nodeum_sdk 1.86.0 → 1.87.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +32 -4
  3. data/docs/ByDateFacet.md +4 -4
  4. data/docs/ByMetadataBucket.md +17 -0
  5. data/docs/ByMetadataBucketAllOf.md +17 -0
  6. data/docs/ByMetadataFacet.md +17 -0
  7. data/docs/ByMetadataFacetAllOf.md +17 -0
  8. data/docs/ByMetadataKeyBucket.md +17 -0
  9. data/docs/ByMetadataKeyBucketAllOf.md +17 -0
  10. data/docs/ByMetadataKeyBuckets.md +17 -0
  11. data/docs/ByMetadataValueBuckets.md +17 -0
  12. data/docs/ByPrimaryStorageFacet.md +4 -4
  13. data/docs/ByPrimaryTypeFacet.md +4 -4
  14. data/docs/BySecondaryStorageFacet.md +4 -4
  15. data/docs/BySizeFacet.md +4 -4
  16. data/docs/ByTaskMetadataFacet.md +17 -0
  17. data/docs/ByTaskMetadataFacetAllOf.md +17 -0
  18. data/docs/ByTypeFacetBucket.md +1 -1
  19. data/docs/CloudBucket.md +3 -1
  20. data/docs/CloudBucketsApi.md +61 -0
  21. data/docs/CloudConnector.md +3 -1
  22. data/docs/DefaultFacet.md +1 -1
  23. data/docs/FileFacet.md +3 -3
  24. data/docs/FileFacetAllOf.md +3 -3
  25. data/docs/FileMetadataDefinition.md +16 -0
  26. data/docs/FileMetadataDefinitionCollection.md +19 -0
  27. data/docs/MetadataApi.md +252 -0
  28. data/docs/MetadataDefinition.md +27 -0
  29. data/docs/StatisticsApi.md +136 -0
  30. data/docs/StorageCloudBucketFacets.md +1 -1
  31. data/docs/StorageFacet.md +1 -1
  32. data/docs/StorageNasShareFacets.md +1 -1
  33. data/docs/StoragePoolFacets.md +1 -1
  34. data/docs/StorageTapeFacets.md +1 -1
  35. data/docs/SystemGroup.md +3 -3
  36. data/docs/SystemUser.md +4 -4
  37. data/docs/TaskFacet.md +11 -7
  38. data/docs/TaskFacetAllOf.md +11 -7
  39. data/docs/TaskFacetBucket.md +12 -8
  40. data/docs/TaskFacetMetadataBucket.md +35 -0
  41. data/docs/TaskFacetMetadataKeyBucket.md +17 -0
  42. data/docs/TaskFacetMetadataKeyBucketAllOf.md +17 -0
  43. data/docs/TaskFacetMetadataKeyBuckets.md +17 -0
  44. data/docs/TaskFacetMetadataValueBuckets.md +17 -0
  45. data/docs/TaskMetadataDefinition.md +25 -0
  46. data/docs/TaskMetadataDefinitionAllOf.md +25 -0
  47. data/docs/TaskMetadataDefinitionCollection.md +19 -0
  48. data/lib/nodeum_sdk.rb +22 -0
  49. data/lib/nodeum_sdk/api/cloud_buckets_api.rb +71 -0
  50. data/lib/nodeum_sdk/api/metadata_api.rb +270 -0
  51. data/lib/nodeum_sdk/api/statistics_api.rb +151 -0
  52. data/lib/nodeum_sdk/models/by_metadata_bucket.rb +218 -0
  53. data/lib/nodeum_sdk/models/by_metadata_bucket_all_of.rb +206 -0
  54. data/lib/nodeum_sdk/models/by_metadata_facet.rb +218 -0
  55. data/lib/nodeum_sdk/models/by_metadata_facet_all_of.rb +206 -0
  56. data/lib/nodeum_sdk/models/by_metadata_key_bucket.rb +218 -0
  57. data/lib/nodeum_sdk/models/by_metadata_key_bucket_all_of.rb +206 -0
  58. data/lib/nodeum_sdk/models/by_metadata_key_buckets.rb +208 -0
  59. data/lib/nodeum_sdk/models/by_metadata_value_buckets.rb +208 -0
  60. data/lib/nodeum_sdk/models/by_task_metadata_facet.rb +218 -0
  61. data/lib/nodeum_sdk/models/by_task_metadata_facet_all_of.rb +206 -0
  62. data/lib/nodeum_sdk/models/cloud_bucket.rb +14 -4
  63. data/lib/nodeum_sdk/models/cloud_connector.rb +16 -6
  64. data/lib/nodeum_sdk/models/file_metadata_definition.rb +230 -0
  65. data/lib/nodeum_sdk/models/file_metadata_definition_collection.rb +217 -0
  66. data/lib/nodeum_sdk/models/metadata_definition.rb +285 -0
  67. data/lib/nodeum_sdk/models/task_facet.rb +22 -4
  68. data/lib/nodeum_sdk/models/task_facet_all_of.rb +22 -4
  69. data/lib/nodeum_sdk/models/task_facet_bucket.rb +22 -4
  70. data/lib/nodeum_sdk/models/task_facet_metadata_bucket.rb +295 -0
  71. data/lib/nodeum_sdk/models/task_facet_metadata_key_bucket.rb +218 -0
  72. data/lib/nodeum_sdk/models/task_facet_metadata_key_bucket_all_of.rb +206 -0
  73. data/lib/nodeum_sdk/models/task_facet_metadata_key_buckets.rb +208 -0
  74. data/lib/nodeum_sdk/models/task_facet_metadata_value_buckets.rb +208 -0
  75. data/lib/nodeum_sdk/models/task_metadata_definition.rb +288 -0
  76. data/lib/nodeum_sdk/models/task_metadata_definition_all_of.rb +276 -0
  77. data/lib/nodeum_sdk/models/task_metadata_definition_collection.rb +217 -0
  78. data/lib/nodeum_sdk/version.rb +1 -1
  79. data/spec/api/metadata_api_spec.rb +85 -0
  80. data/spec/models/by_metadata_bucket_all_of_spec.rb +41 -0
  81. data/spec/models/by_metadata_bucket_spec.rb +41 -0
  82. data/spec/models/by_metadata_facet_all_of_spec.rb +41 -0
  83. data/spec/models/by_metadata_facet_spec.rb +41 -0
  84. data/spec/models/by_metadata_key_bucket_all_of_spec.rb +41 -0
  85. data/spec/models/by_metadata_key_bucket_spec.rb +41 -0
  86. data/spec/models/by_metadata_key_buckets_spec.rb +41 -0
  87. data/spec/models/by_metadata_value_buckets_spec.rb +41 -0
  88. data/spec/models/by_task_metadata_facet_all_of_spec.rb +41 -0
  89. data/spec/models/by_task_metadata_facet_spec.rb +41 -0
  90. data/spec/models/file_metadata_definition_collection_spec.rb +47 -0
  91. data/spec/models/file_metadata_definition_spec.rb +35 -0
  92. data/spec/models/metadata_definition_spec.rb +75 -0
  93. data/spec/models/task_facet_metadata_bucket_spec.rb +95 -0
  94. data/spec/models/task_facet_metadata_key_bucket_all_of_spec.rb +41 -0
  95. data/spec/models/task_facet_metadata_key_bucket_spec.rb +41 -0
  96. data/spec/models/task_facet_metadata_key_buckets_spec.rb +41 -0
  97. data/spec/models/task_facet_metadata_value_buckets_spec.rb +41 -0
  98. data/spec/models/task_metadata_definition_all_of_spec.rb +69 -0
  99. data/spec/models/task_metadata_definition_collection_spec.rb +47 -0
  100. data/spec/models/task_metadata_definition_spec.rb +69 -0
  101. metadata +245 -157
@@ -0,0 +1,41 @@
1
+ =begin
2
+ #Nodeum API
3
+
4
+ #The Nodeum API makes it easy to tap into the digital data mesh that runs across your organisation. Make requests to our API endpoints and we’ll give you everything you need to interconnect your business workflows with your storage. All production API requests are made to: http://nodeumhostname/api/ The current production version of the API is v1. **REST** The Nodeum API is a RESTful API. This means that the API is designed to allow you to get, create, update, & delete objects with the HTTP verbs GET, POST, PUT, PATCH, & DELETE. **JSON** The Nodeum API speaks exclusively in JSON. This means that you should always set the Content-Type header to application/json to ensure that your requests are properly accepted and processed by the API. **Authentication** All API calls require user-password authentication. **Cross-Origin Resource Sharing** The Nodeum API supports CORS for communicating from Javascript for these endpoints. You will need to specify an Origin URI when creating your application to allow for CORS to be whitelisted for your domain. **Pagination** Some endpoints such as File Listing return a potentially lengthy array of objects. In order to keep the response sizes manageable the API will take advantage of pagination. Pagination is a mechanism for returning a subset of the results for a request and allowing for subsequent requests to “page” through the rest of the results until the end is reached. Paginated endpoints follow a standard interface that accepts two query parameters, limit and offset, and return a payload that follows a standard form. These parameters names and their behavior are borrowed from SQL LIMIT and OFFSET keywords. **Versioning** The Nodeum API is constantly being worked on to add features, make improvements, and fix bugs. This means that you should expect changes to be introduced and documented. However, there are some changes or additions that are considered backwards-compatible and your applications should be flexible enough to handle them. These include: - Adding new endpoints to the API - Adding new attributes to the response of an existing endpoint - Changing the order of attributes of responses (JSON by definition is an object of unordered key/value pairs) **Filter parameters** When browsing a list of items, multiple filter parameters may be applied. Some operators can be added to the value as a prefix: - `=` value is equal. Default operator, may be omitted - `!=` value is different - `>` greater than - `>=` greater than or equal - `<` lower than - `>=` lower than or equal - `><` included in list, items should be separated by `|` - `!><` not included in list, items should be separated by `|` - `~` pattern matching, may include `%` (any characters) and `_` (one character) - `!~` pattern not matching, may include `%` (any characters) and `_` (one character)
5
+
6
+ The version of the OpenAPI document: 2.1.0
7
+ Contact: info@nodeum.io
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Nodeum::TaskFacetMetadataKeyBucketAllOf
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'TaskFacetMetadataKeyBucketAllOf' do
21
+ before do
22
+ # run before each test
23
+ @instance = Nodeum::TaskFacetMetadataKeyBucketAllOf.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of TaskFacetMetadataKeyBucketAllOf' do
31
+ it 'should create an instance of TaskFacetMetadataKeyBucketAllOf' do
32
+ expect(@instance).to be_instance_of(Nodeum::TaskFacetMetadataKeyBucketAllOf)
33
+ end
34
+ end
35
+ describe 'test attribute "meta_value_t"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ end
@@ -0,0 +1,41 @@
1
+ =begin
2
+ #Nodeum API
3
+
4
+ #The Nodeum API makes it easy to tap into the digital data mesh that runs across your organisation. Make requests to our API endpoints and we’ll give you everything you need to interconnect your business workflows with your storage. All production API requests are made to: http://nodeumhostname/api/ The current production version of the API is v1. **REST** The Nodeum API is a RESTful API. This means that the API is designed to allow you to get, create, update, & delete objects with the HTTP verbs GET, POST, PUT, PATCH, & DELETE. **JSON** The Nodeum API speaks exclusively in JSON. This means that you should always set the Content-Type header to application/json to ensure that your requests are properly accepted and processed by the API. **Authentication** All API calls require user-password authentication. **Cross-Origin Resource Sharing** The Nodeum API supports CORS for communicating from Javascript for these endpoints. You will need to specify an Origin URI when creating your application to allow for CORS to be whitelisted for your domain. **Pagination** Some endpoints such as File Listing return a potentially lengthy array of objects. In order to keep the response sizes manageable the API will take advantage of pagination. Pagination is a mechanism for returning a subset of the results for a request and allowing for subsequent requests to “page” through the rest of the results until the end is reached. Paginated endpoints follow a standard interface that accepts two query parameters, limit and offset, and return a payload that follows a standard form. These parameters names and their behavior are borrowed from SQL LIMIT and OFFSET keywords. **Versioning** The Nodeum API is constantly being worked on to add features, make improvements, and fix bugs. This means that you should expect changes to be introduced and documented. However, there are some changes or additions that are considered backwards-compatible and your applications should be flexible enough to handle them. These include: - Adding new endpoints to the API - Adding new attributes to the response of an existing endpoint - Changing the order of attributes of responses (JSON by definition is an object of unordered key/value pairs) **Filter parameters** When browsing a list of items, multiple filter parameters may be applied. Some operators can be added to the value as a prefix: - `=` value is equal. Default operator, may be omitted - `!=` value is different - `>` greater than - `>=` greater than or equal - `<` lower than - `>=` lower than or equal - `><` included in list, items should be separated by `|` - `!><` not included in list, items should be separated by `|` - `~` pattern matching, may include `%` (any characters) and `_` (one character) - `!~` pattern not matching, may include `%` (any characters) and `_` (one character)
5
+
6
+ The version of the OpenAPI document: 2.1.0
7
+ Contact: info@nodeum.io
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Nodeum::TaskFacetMetadataKeyBucket
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'TaskFacetMetadataKeyBucket' do
21
+ before do
22
+ # run before each test
23
+ @instance = Nodeum::TaskFacetMetadataKeyBucket.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of TaskFacetMetadataKeyBucket' do
31
+ it 'should create an instance of TaskFacetMetadataKeyBucket' do
32
+ expect(@instance).to be_instance_of(Nodeum::TaskFacetMetadataKeyBucket)
33
+ end
34
+ end
35
+ describe 'test attribute "meta_value_t"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ end
@@ -0,0 +1,41 @@
1
+ =begin
2
+ #Nodeum API
3
+
4
+ #The Nodeum API makes it easy to tap into the digital data mesh that runs across your organisation. Make requests to our API endpoints and we’ll give you everything you need to interconnect your business workflows with your storage. All production API requests are made to: http://nodeumhostname/api/ The current production version of the API is v1. **REST** The Nodeum API is a RESTful API. This means that the API is designed to allow you to get, create, update, & delete objects with the HTTP verbs GET, POST, PUT, PATCH, & DELETE. **JSON** The Nodeum API speaks exclusively in JSON. This means that you should always set the Content-Type header to application/json to ensure that your requests are properly accepted and processed by the API. **Authentication** All API calls require user-password authentication. **Cross-Origin Resource Sharing** The Nodeum API supports CORS for communicating from Javascript for these endpoints. You will need to specify an Origin URI when creating your application to allow for CORS to be whitelisted for your domain. **Pagination** Some endpoints such as File Listing return a potentially lengthy array of objects. In order to keep the response sizes manageable the API will take advantage of pagination. Pagination is a mechanism for returning a subset of the results for a request and allowing for subsequent requests to “page” through the rest of the results until the end is reached. Paginated endpoints follow a standard interface that accepts two query parameters, limit and offset, and return a payload that follows a standard form. These parameters names and their behavior are borrowed from SQL LIMIT and OFFSET keywords. **Versioning** The Nodeum API is constantly being worked on to add features, make improvements, and fix bugs. This means that you should expect changes to be introduced and documented. However, there are some changes or additions that are considered backwards-compatible and your applications should be flexible enough to handle them. These include: - Adding new endpoints to the API - Adding new attributes to the response of an existing endpoint - Changing the order of attributes of responses (JSON by definition is an object of unordered key/value pairs) **Filter parameters** When browsing a list of items, multiple filter parameters may be applied. Some operators can be added to the value as a prefix: - `=` value is equal. Default operator, may be omitted - `!=` value is different - `>` greater than - `>=` greater than or equal - `<` lower than - `>=` lower than or equal - `><` included in list, items should be separated by `|` - `!><` not included in list, items should be separated by `|` - `~` pattern matching, may include `%` (any characters) and `_` (one character) - `!~` pattern not matching, may include `%` (any characters) and `_` (one character)
5
+
6
+ The version of the OpenAPI document: 2.1.0
7
+ Contact: info@nodeum.io
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Nodeum::TaskFacetMetadataKeyBuckets
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'TaskFacetMetadataKeyBuckets' do
21
+ before do
22
+ # run before each test
23
+ @instance = Nodeum::TaskFacetMetadataKeyBuckets.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of TaskFacetMetadataKeyBuckets' do
31
+ it 'should create an instance of TaskFacetMetadataKeyBuckets' do
32
+ expect(@instance).to be_instance_of(Nodeum::TaskFacetMetadataKeyBuckets)
33
+ end
34
+ end
35
+ describe 'test attribute "buckets"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ end
@@ -0,0 +1,41 @@
1
+ =begin
2
+ #Nodeum API
3
+
4
+ #The Nodeum API makes it easy to tap into the digital data mesh that runs across your organisation. Make requests to our API endpoints and we’ll give you everything you need to interconnect your business workflows with your storage. All production API requests are made to: http://nodeumhostname/api/ The current production version of the API is v1. **REST** The Nodeum API is a RESTful API. This means that the API is designed to allow you to get, create, update, & delete objects with the HTTP verbs GET, POST, PUT, PATCH, & DELETE. **JSON** The Nodeum API speaks exclusively in JSON. This means that you should always set the Content-Type header to application/json to ensure that your requests are properly accepted and processed by the API. **Authentication** All API calls require user-password authentication. **Cross-Origin Resource Sharing** The Nodeum API supports CORS for communicating from Javascript for these endpoints. You will need to specify an Origin URI when creating your application to allow for CORS to be whitelisted for your domain. **Pagination** Some endpoints such as File Listing return a potentially lengthy array of objects. In order to keep the response sizes manageable the API will take advantage of pagination. Pagination is a mechanism for returning a subset of the results for a request and allowing for subsequent requests to “page” through the rest of the results until the end is reached. Paginated endpoints follow a standard interface that accepts two query parameters, limit and offset, and return a payload that follows a standard form. These parameters names and their behavior are borrowed from SQL LIMIT and OFFSET keywords. **Versioning** The Nodeum API is constantly being worked on to add features, make improvements, and fix bugs. This means that you should expect changes to be introduced and documented. However, there are some changes or additions that are considered backwards-compatible and your applications should be flexible enough to handle them. These include: - Adding new endpoints to the API - Adding new attributes to the response of an existing endpoint - Changing the order of attributes of responses (JSON by definition is an object of unordered key/value pairs) **Filter parameters** When browsing a list of items, multiple filter parameters may be applied. Some operators can be added to the value as a prefix: - `=` value is equal. Default operator, may be omitted - `!=` value is different - `>` greater than - `>=` greater than or equal - `<` lower than - `>=` lower than or equal - `><` included in list, items should be separated by `|` - `!><` not included in list, items should be separated by `|` - `~` pattern matching, may include `%` (any characters) and `_` (one character) - `!~` pattern not matching, may include `%` (any characters) and `_` (one character)
5
+
6
+ The version of the OpenAPI document: 2.1.0
7
+ Contact: info@nodeum.io
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Nodeum::TaskFacetMetadataValueBuckets
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'TaskFacetMetadataValueBuckets' do
21
+ before do
22
+ # run before each test
23
+ @instance = Nodeum::TaskFacetMetadataValueBuckets.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of TaskFacetMetadataValueBuckets' do
31
+ it 'should create an instance of TaskFacetMetadataValueBuckets' do
32
+ expect(@instance).to be_instance_of(Nodeum::TaskFacetMetadataValueBuckets)
33
+ end
34
+ end
35
+ describe 'test attribute "buckets"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ end
@@ -0,0 +1,69 @@
1
+ =begin
2
+ #Nodeum API
3
+
4
+ #The Nodeum API makes it easy to tap into the digital data mesh that runs across your organisation. Make requests to our API endpoints and we’ll give you everything you need to interconnect your business workflows with your storage. All production API requests are made to: http://nodeumhostname/api/ The current production version of the API is v1. **REST** The Nodeum API is a RESTful API. This means that the API is designed to allow you to get, create, update, & delete objects with the HTTP verbs GET, POST, PUT, PATCH, & DELETE. **JSON** The Nodeum API speaks exclusively in JSON. This means that you should always set the Content-Type header to application/json to ensure that your requests are properly accepted and processed by the API. **Authentication** All API calls require user-password authentication. **Cross-Origin Resource Sharing** The Nodeum API supports CORS for communicating from Javascript for these endpoints. You will need to specify an Origin URI when creating your application to allow for CORS to be whitelisted for your domain. **Pagination** Some endpoints such as File Listing return a potentially lengthy array of objects. In order to keep the response sizes manageable the API will take advantage of pagination. Pagination is a mechanism for returning a subset of the results for a request and allowing for subsequent requests to “page” through the rest of the results until the end is reached. Paginated endpoints follow a standard interface that accepts two query parameters, limit and offset, and return a payload that follows a standard form. These parameters names and their behavior are borrowed from SQL LIMIT and OFFSET keywords. **Versioning** The Nodeum API is constantly being worked on to add features, make improvements, and fix bugs. This means that you should expect changes to be introduced and documented. However, there are some changes or additions that are considered backwards-compatible and your applications should be flexible enough to handle them. These include: - Adding new endpoints to the API - Adding new attributes to the response of an existing endpoint - Changing the order of attributes of responses (JSON by definition is an object of unordered key/value pairs) **Filter parameters** When browsing a list of items, multiple filter parameters may be applied. Some operators can be added to the value as a prefix: - `=` value is equal. Default operator, may be omitted - `!=` value is different - `>` greater than - `>=` greater than or equal - `<` lower than - `>=` lower than or equal - `><` included in list, items should be separated by `|` - `!><` not included in list, items should be separated by `|` - `~` pattern matching, may include `%` (any characters) and `_` (one character) - `!~` pattern not matching, may include `%` (any characters) and `_` (one character)
5
+
6
+ The version of the OpenAPI document: 2.1.0
7
+ Contact: info@nodeum.io
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Nodeum::TaskMetadataDefinitionAllOf
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'TaskMetadataDefinitionAllOf' do
21
+ before do
22
+ # run before each test
23
+ @instance = Nodeum::TaskMetadataDefinitionAllOf.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of TaskMetadataDefinitionAllOf' do
31
+ it 'should create an instance of TaskMetadataDefinitionAllOf' do
32
+ expect(@instance).to be_instance_of(Nodeum::TaskMetadataDefinitionAllOf)
33
+ end
34
+ end
35
+ describe 'test attribute "type"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["input_text", "text_area", "checkbox", "radio"])
39
+ # validator.allowable_values.each do |value|
40
+ # expect { @instance.type = value }.not_to raise_error
41
+ # end
42
+ end
43
+ end
44
+
45
+ describe 'test attribute "apply_active_archive"' do
46
+ it 'should work' do
47
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
48
+ end
49
+ end
50
+
51
+ describe 'test attribute "apply_offline_archive"' do
52
+ it 'should work' do
53
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
54
+ end
55
+ end
56
+
57
+ describe 'test attribute "apply_data_exchange"' do
58
+ it 'should work' do
59
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
60
+ end
61
+ end
62
+
63
+ describe 'test attribute "apply_maintenance"' do
64
+ it 'should work' do
65
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
66
+ end
67
+ end
68
+
69
+ end
@@ -0,0 +1,47 @@
1
+ =begin
2
+ #Nodeum API
3
+
4
+ #The Nodeum API makes it easy to tap into the digital data mesh that runs across your organisation. Make requests to our API endpoints and we’ll give you everything you need to interconnect your business workflows with your storage. All production API requests are made to: http://nodeumhostname/api/ The current production version of the API is v1. **REST** The Nodeum API is a RESTful API. This means that the API is designed to allow you to get, create, update, & delete objects with the HTTP verbs GET, POST, PUT, PATCH, & DELETE. **JSON** The Nodeum API speaks exclusively in JSON. This means that you should always set the Content-Type header to application/json to ensure that your requests are properly accepted and processed by the API. **Authentication** All API calls require user-password authentication. **Cross-Origin Resource Sharing** The Nodeum API supports CORS for communicating from Javascript for these endpoints. You will need to specify an Origin URI when creating your application to allow for CORS to be whitelisted for your domain. **Pagination** Some endpoints such as File Listing return a potentially lengthy array of objects. In order to keep the response sizes manageable the API will take advantage of pagination. Pagination is a mechanism for returning a subset of the results for a request and allowing for subsequent requests to “page” through the rest of the results until the end is reached. Paginated endpoints follow a standard interface that accepts two query parameters, limit and offset, and return a payload that follows a standard form. These parameters names and their behavior are borrowed from SQL LIMIT and OFFSET keywords. **Versioning** The Nodeum API is constantly being worked on to add features, make improvements, and fix bugs. This means that you should expect changes to be introduced and documented. However, there are some changes or additions that are considered backwards-compatible and your applications should be flexible enough to handle them. These include: - Adding new endpoints to the API - Adding new attributes to the response of an existing endpoint - Changing the order of attributes of responses (JSON by definition is an object of unordered key/value pairs) **Filter parameters** When browsing a list of items, multiple filter parameters may be applied. Some operators can be added to the value as a prefix: - `=` value is equal. Default operator, may be omitted - `!=` value is different - `>` greater than - `>=` greater than or equal - `<` lower than - `>=` lower than or equal - `><` included in list, items should be separated by `|` - `!><` not included in list, items should be separated by `|` - `~` pattern matching, may include `%` (any characters) and `_` (one character) - `!~` pattern not matching, may include `%` (any characters) and `_` (one character)
5
+
6
+ The version of the OpenAPI document: 2.1.0
7
+ Contact: info@nodeum.io
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Nodeum::TaskMetadataDefinitionCollection
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'TaskMetadataDefinitionCollection' do
21
+ before do
22
+ # run before each test
23
+ @instance = Nodeum::TaskMetadataDefinitionCollection.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of TaskMetadataDefinitionCollection' do
31
+ it 'should create an instance of TaskMetadataDefinitionCollection' do
32
+ expect(@instance).to be_instance_of(Nodeum::TaskMetadataDefinitionCollection)
33
+ end
34
+ end
35
+ describe 'test attribute "count"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "task_metadata_definitions"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ end
@@ -0,0 +1,69 @@
1
+ =begin
2
+ #Nodeum API
3
+
4
+ #The Nodeum API makes it easy to tap into the digital data mesh that runs across your organisation. Make requests to our API endpoints and we’ll give you everything you need to interconnect your business workflows with your storage. All production API requests are made to: http://nodeumhostname/api/ The current production version of the API is v1. **REST** The Nodeum API is a RESTful API. This means that the API is designed to allow you to get, create, update, & delete objects with the HTTP verbs GET, POST, PUT, PATCH, & DELETE. **JSON** The Nodeum API speaks exclusively in JSON. This means that you should always set the Content-Type header to application/json to ensure that your requests are properly accepted and processed by the API. **Authentication** All API calls require user-password authentication. **Cross-Origin Resource Sharing** The Nodeum API supports CORS for communicating from Javascript for these endpoints. You will need to specify an Origin URI when creating your application to allow for CORS to be whitelisted for your domain. **Pagination** Some endpoints such as File Listing return a potentially lengthy array of objects. In order to keep the response sizes manageable the API will take advantage of pagination. Pagination is a mechanism for returning a subset of the results for a request and allowing for subsequent requests to “page” through the rest of the results until the end is reached. Paginated endpoints follow a standard interface that accepts two query parameters, limit and offset, and return a payload that follows a standard form. These parameters names and their behavior are borrowed from SQL LIMIT and OFFSET keywords. **Versioning** The Nodeum API is constantly being worked on to add features, make improvements, and fix bugs. This means that you should expect changes to be introduced and documented. However, there are some changes or additions that are considered backwards-compatible and your applications should be flexible enough to handle them. These include: - Adding new endpoints to the API - Adding new attributes to the response of an existing endpoint - Changing the order of attributes of responses (JSON by definition is an object of unordered key/value pairs) **Filter parameters** When browsing a list of items, multiple filter parameters may be applied. Some operators can be added to the value as a prefix: - `=` value is equal. Default operator, may be omitted - `!=` value is different - `>` greater than - `>=` greater than or equal - `<` lower than - `>=` lower than or equal - `><` included in list, items should be separated by `|` - `!><` not included in list, items should be separated by `|` - `~` pattern matching, may include `%` (any characters) and `_` (one character) - `!~` pattern not matching, may include `%` (any characters) and `_` (one character)
5
+
6
+ The version of the OpenAPI document: 2.1.0
7
+ Contact: info@nodeum.io
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Nodeum::TaskMetadataDefinition
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'TaskMetadataDefinition' do
21
+ before do
22
+ # run before each test
23
+ @instance = Nodeum::TaskMetadataDefinition.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of TaskMetadataDefinition' do
31
+ it 'should create an instance of TaskMetadataDefinition' do
32
+ expect(@instance).to be_instance_of(Nodeum::TaskMetadataDefinition)
33
+ end
34
+ end
35
+ describe 'test attribute "type"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["input_text", "text_area", "checkbox", "radio"])
39
+ # validator.allowable_values.each do |value|
40
+ # expect { @instance.type = value }.not_to raise_error
41
+ # end
42
+ end
43
+ end
44
+
45
+ describe 'test attribute "apply_active_archive"' do
46
+ it 'should work' do
47
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
48
+ end
49
+ end
50
+
51
+ describe 'test attribute "apply_offline_archive"' do
52
+ it 'should work' do
53
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
54
+ end
55
+ end
56
+
57
+ describe 'test attribute "apply_data_exchange"' do
58
+ it 'should work' do
59
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
60
+ end
61
+ end
62
+
63
+ describe 'test attribute "apply_maintenance"' do
64
+ it 'should work' do
65
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
66
+ end
67
+ end
68
+
69
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nodeum_sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.86.0
4
+ version: 1.87.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-17 00:00:00.000000000 Z
11
+ date: 2020-08-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -131,6 +131,14 @@ files:
131
131
  - docs/ByFileExtensionFacetAllOf.md
132
132
  - docs/ByGroupOwnerFacet.md
133
133
  - docs/ByGroupOwnerFacetAllOf.md
134
+ - docs/ByMetadataBucket.md
135
+ - docs/ByMetadataBucketAllOf.md
136
+ - docs/ByMetadataFacet.md
137
+ - docs/ByMetadataFacetAllOf.md
138
+ - docs/ByMetadataKeyBucket.md
139
+ - docs/ByMetadataKeyBucketAllOf.md
140
+ - docs/ByMetadataKeyBuckets.md
141
+ - docs/ByMetadataValueBuckets.md
134
142
  - docs/ByPrimaryCloudFacet.md
135
143
  - docs/ByPrimaryCloudFacetAllOf.md
136
144
  - docs/ByPrimaryFacet.md
@@ -153,6 +161,8 @@ files:
153
161
  - docs/BySecondaryTypeFacet.md
154
162
  - docs/BySecondaryTypeFacetAllOf.md
155
163
  - docs/BySizeFacet.md
164
+ - docs/ByTaskMetadataFacet.md
165
+ - docs/ByTaskMetadataFacetAllOf.md
156
166
  - docs/ByTaskStatusFacet.md
157
167
  - docs/ByTaskStatusFacetAllOf.md
158
168
  - docs/ByTaskStorageFacet.md
@@ -180,6 +190,8 @@ files:
180
190
  - docs/Error.md
181
191
  - docs/FileFacet.md
182
192
  - docs/FileFacetAllOf.md
193
+ - docs/FileMetadataDefinition.md
194
+ - docs/FileMetadataDefinitionCollection.md
183
195
  - docs/FilesApi.md
184
196
  - docs/Frozen.md
185
197
  - docs/GreaterThan.md
@@ -192,6 +204,8 @@ files:
192
204
  - docs/LessThan.md
193
205
  - docs/LessThanAllOf.md
194
206
  - docs/LessThanOrEqualTo.md
207
+ - docs/MetadataApi.md
208
+ - docs/MetadataDefinition.md
195
209
  - docs/MountCollection.md
196
210
  - docs/MountInfo.md
197
211
  - docs/MountNotification.md
@@ -276,7 +290,15 @@ files:
276
290
  - docs/TaskFacetAllOf.md
277
291
  - docs/TaskFacetBucket.md
278
292
  - docs/TaskFacetBuckets.md
293
+ - docs/TaskFacetMetadataBucket.md
294
+ - docs/TaskFacetMetadataKeyBucket.md
295
+ - docs/TaskFacetMetadataKeyBucketAllOf.md
296
+ - docs/TaskFacetMetadataKeyBuckets.md
297
+ - docs/TaskFacetMetadataValueBuckets.md
279
298
  - docs/TaskMetadataApi.md
299
+ - docs/TaskMetadataDefinition.md
300
+ - docs/TaskMetadataDefinitionAllOf.md
301
+ - docs/TaskMetadataDefinitionCollection.md
280
302
  - docs/TaskMetadatum.md
281
303
  - docs/TaskMetadatumCollection.md
282
304
  - docs/TaskOption.md
@@ -305,6 +327,7 @@ files:
305
327
  - lib/nodeum_sdk/api/cloud_connectors_api.rb
306
328
  - lib/nodeum_sdk/api/containers_api.rb
307
329
  - lib/nodeum_sdk/api/files_api.rb
330
+ - lib/nodeum_sdk/api/metadata_api.rb
308
331
  - lib/nodeum_sdk/api/mounts_api.rb
309
332
  - lib/nodeum_sdk/api/nas_api.rb
310
333
  - lib/nodeum_sdk/api/nas_shares_api.rb
@@ -342,6 +365,14 @@ files:
342
365
  - lib/nodeum_sdk/models/by_file_extension_facet_all_of.rb
343
366
  - lib/nodeum_sdk/models/by_group_owner_facet.rb
344
367
  - lib/nodeum_sdk/models/by_group_owner_facet_all_of.rb
368
+ - lib/nodeum_sdk/models/by_metadata_bucket.rb
369
+ - lib/nodeum_sdk/models/by_metadata_bucket_all_of.rb
370
+ - lib/nodeum_sdk/models/by_metadata_facet.rb
371
+ - lib/nodeum_sdk/models/by_metadata_facet_all_of.rb
372
+ - lib/nodeum_sdk/models/by_metadata_key_bucket.rb
373
+ - lib/nodeum_sdk/models/by_metadata_key_bucket_all_of.rb
374
+ - lib/nodeum_sdk/models/by_metadata_key_buckets.rb
375
+ - lib/nodeum_sdk/models/by_metadata_value_buckets.rb
345
376
  - lib/nodeum_sdk/models/by_primary_cloud_facet.rb
346
377
  - lib/nodeum_sdk/models/by_primary_cloud_facet_all_of.rb
347
378
  - lib/nodeum_sdk/models/by_primary_facet.rb
@@ -364,6 +395,8 @@ files:
364
395
  - lib/nodeum_sdk/models/by_secondary_type_facet.rb
365
396
  - lib/nodeum_sdk/models/by_secondary_type_facet_all_of.rb
366
397
  - lib/nodeum_sdk/models/by_size_facet.rb
398
+ - lib/nodeum_sdk/models/by_task_metadata_facet.rb
399
+ - lib/nodeum_sdk/models/by_task_metadata_facet_all_of.rb
367
400
  - lib/nodeum_sdk/models/by_task_status_facet.rb
368
401
  - lib/nodeum_sdk/models/by_task_status_facet_all_of.rb
369
402
  - lib/nodeum_sdk/models/by_task_storage_facet.rb
@@ -388,6 +421,8 @@ files:
388
421
  - lib/nodeum_sdk/models/error.rb
389
422
  - lib/nodeum_sdk/models/file_facet.rb
390
423
  - lib/nodeum_sdk/models/file_facet_all_of.rb
424
+ - lib/nodeum_sdk/models/file_metadata_definition.rb
425
+ - lib/nodeum_sdk/models/file_metadata_definition_collection.rb
391
426
  - lib/nodeum_sdk/models/frozen.rb
392
427
  - lib/nodeum_sdk/models/greater_than.rb
393
428
  - lib/nodeum_sdk/models/greater_than_all_of.rb
@@ -399,6 +434,7 @@ files:
399
434
  - lib/nodeum_sdk/models/less_than.rb
400
435
  - lib/nodeum_sdk/models/less_than_all_of.rb
401
436
  - lib/nodeum_sdk/models/less_than_or_equal_to.rb
437
+ - lib/nodeum_sdk/models/metadata_definition.rb
402
438
  - lib/nodeum_sdk/models/mount_collection.rb
403
439
  - lib/nodeum_sdk/models/mount_info.rb
404
440
  - lib/nodeum_sdk/models/mount_notification.rb
@@ -471,6 +507,14 @@ files:
471
507
  - lib/nodeum_sdk/models/task_facet_all_of.rb
472
508
  - lib/nodeum_sdk/models/task_facet_bucket.rb
473
509
  - lib/nodeum_sdk/models/task_facet_buckets.rb
510
+ - lib/nodeum_sdk/models/task_facet_metadata_bucket.rb
511
+ - lib/nodeum_sdk/models/task_facet_metadata_key_bucket.rb
512
+ - lib/nodeum_sdk/models/task_facet_metadata_key_bucket_all_of.rb
513
+ - lib/nodeum_sdk/models/task_facet_metadata_key_buckets.rb
514
+ - lib/nodeum_sdk/models/task_facet_metadata_value_buckets.rb
515
+ - lib/nodeum_sdk/models/task_metadata_definition.rb
516
+ - lib/nodeum_sdk/models/task_metadata_definition_all_of.rb
517
+ - lib/nodeum_sdk/models/task_metadata_definition_collection.rb
474
518
  - lib/nodeum_sdk/models/task_metadatum.rb
475
519
  - lib/nodeum_sdk/models/task_metadatum_collection.rb
476
520
  - lib/nodeum_sdk/models/task_option.rb
@@ -494,6 +538,7 @@ files:
494
538
  - spec/api/cloud_connectors_api_spec.rb
495
539
  - spec/api/containers_api_spec.rb
496
540
  - spec/api/files_api_spec.rb
541
+ - spec/api/metadata_api_spec.rb
497
542
  - spec/api/mounts_api_spec.rb
498
543
  - spec/api/nas_api_spec.rb
499
544
  - spec/api/nas_shares_api_spec.rb
@@ -530,6 +575,14 @@ files:
530
575
  - spec/models/by_file_extension_facet_spec.rb
531
576
  - spec/models/by_group_owner_facet_all_of_spec.rb
532
577
  - spec/models/by_group_owner_facet_spec.rb
578
+ - spec/models/by_metadata_bucket_all_of_spec.rb
579
+ - spec/models/by_metadata_bucket_spec.rb
580
+ - spec/models/by_metadata_facet_all_of_spec.rb
581
+ - spec/models/by_metadata_facet_spec.rb
582
+ - spec/models/by_metadata_key_bucket_all_of_spec.rb
583
+ - spec/models/by_metadata_key_bucket_spec.rb
584
+ - spec/models/by_metadata_key_buckets_spec.rb
585
+ - spec/models/by_metadata_value_buckets_spec.rb
533
586
  - spec/models/by_primary_cloud_facet_all_of_spec.rb
534
587
  - spec/models/by_primary_cloud_facet_spec.rb
535
588
  - spec/models/by_primary_facet_all_of_spec.rb
@@ -552,6 +605,8 @@ files:
552
605
  - spec/models/by_secondary_type_facet_all_of_spec.rb
553
606
  - spec/models/by_secondary_type_facet_spec.rb
554
607
  - spec/models/by_size_facet_spec.rb
608
+ - spec/models/by_task_metadata_facet_all_of_spec.rb
609
+ - spec/models/by_task_metadata_facet_spec.rb
555
610
  - spec/models/by_task_status_facet_all_of_spec.rb
556
611
  - spec/models/by_task_status_facet_spec.rb
557
612
  - spec/models/by_task_storage_facet_all_of_spec.rb
@@ -576,6 +631,8 @@ files:
576
631
  - spec/models/error_spec.rb
577
632
  - spec/models/file_facet_all_of_spec.rb
578
633
  - spec/models/file_facet_spec.rb
634
+ - spec/models/file_metadata_definition_collection_spec.rb
635
+ - spec/models/file_metadata_definition_spec.rb
579
636
  - spec/models/frozen_spec.rb
580
637
  - spec/models/greater_than_all_of_spec.rb
581
638
  - spec/models/greater_than_or_equal_to_spec.rb
@@ -587,6 +644,7 @@ files:
587
644
  - spec/models/less_than_all_of_spec.rb
588
645
  - spec/models/less_than_or_equal_to_spec.rb
589
646
  - spec/models/less_than_spec.rb
647
+ - spec/models/metadata_definition_spec.rb
590
648
  - spec/models/mount_collection_spec.rb
591
649
  - spec/models/mount_info_spec.rb
592
650
  - spec/models/mount_notification_spec.rb
@@ -657,7 +715,15 @@ files:
657
715
  - spec/models/task_facet_all_of_spec.rb
658
716
  - spec/models/task_facet_bucket_spec.rb
659
717
  - spec/models/task_facet_buckets_spec.rb
718
+ - spec/models/task_facet_metadata_bucket_spec.rb
719
+ - spec/models/task_facet_metadata_key_bucket_all_of_spec.rb
720
+ - spec/models/task_facet_metadata_key_bucket_spec.rb
721
+ - spec/models/task_facet_metadata_key_buckets_spec.rb
722
+ - spec/models/task_facet_metadata_value_buckets_spec.rb
660
723
  - spec/models/task_facet_spec.rb
724
+ - spec/models/task_metadata_definition_all_of_spec.rb
725
+ - spec/models/task_metadata_definition_collection_spec.rb
726
+ - spec/models/task_metadata_definition_spec.rb
661
727
  - spec/models/task_metadatum_collection_spec.rb
662
728
  - spec/models/task_metadatum_spec.rb
663
729
  - spec/models/task_option_collection_spec.rb
@@ -701,190 +767,212 @@ signing_key:
701
767
  specification_version: 4
702
768
  summary: Nodeum API Ruby Gem
703
769
  test_files:
704
- - spec/api/task_sources_api_spec.rb
705
- - spec/api/files_api_spec.rb
706
770
  - spec/api/mounts_api_spec.rb
707
- - spec/api/cloud_connectors_api_spec.rb
771
+ - spec/api/task_executions_api_spec.rb
772
+ - spec/api/systems_api_spec.rb
708
773
  - spec/api/containers_api_spec.rb
774
+ - spec/api/cloud_connectors_api_spec.rb
775
+ - spec/api/statistics_api_spec.rb
776
+ - spec/api/task_metadata_api_spec.rb
709
777
  - spec/api/users_api_spec.rb
710
- - spec/api/tape_drives_api_spec.rb
778
+ - spec/api/task_options_api_spec.rb
779
+ - spec/api/task_sources_api_spec.rb
711
780
  - spec/api/tasks_api_spec.rb
712
- - spec/api/task_schedules_api_spec.rb
781
+ - spec/api/pools_api_spec.rb
782
+ - spec/api/tape_drives_api_spec.rb
713
783
  - spec/api/tapes_api_spec.rb
714
- - spec/api/nas_api_spec.rb
715
- - spec/api/task_options_api_spec.rb
716
- - spec/api/task_callbacks_api_spec.rb
717
- - spec/api/task_executions_api_spec.rb
718
- - spec/api/task_metadata_api_spec.rb
784
+ - spec/api/nas_shares_api_spec.rb
785
+ - spec/api/files_api_spec.rb
786
+ - spec/api/metadata_api_spec.rb
719
787
  - spec/api/cloud_buckets_api_spec.rb
720
- - spec/api/pools_api_spec.rb
721
- - spec/api/systems_api_spec.rb
788
+ - spec/api/nas_api_spec.rb
789
+ - spec/api/task_schedules_api_spec.rb
722
790
  - spec/api/tape_libraries_api_spec.rb
723
- - spec/api/statistics_api_spec.rb
724
- - spec/api/nas_shares_api_spec.rb
791
+ - spec/api/task_callbacks_api_spec.rb
725
792
  - spec/api/task_destinations_api_spec.rb
726
793
  - spec/api_client_spec.rb
727
794
  - spec/configuration_spec.rb
728
- - spec/models/by_task_workflow_facet_all_of_spec.rb
729
- - spec/models/by_group_owner_facet_all_of_spec.rb
730
- - spec/models/api_key_collection_spec.rb
731
- - spec/models/greater_than_spec.rb
732
- - spec/models/storage_tape_by_type_facets_spec.rb
733
- - spec/models/too_short_spec.rb
734
- - spec/models/by_user_owner_facet_all_of_spec.rb
735
- - spec/models/by_task_status_facet_all_of_spec.rb
736
- - spec/models/by_secondary_nas_facet_spec.rb
737
- - spec/models/user_configuration_spec.rb
738
- - spec/models/by_size_facet_spec.rb
739
- - spec/models/storage_cloud_bucket_facets_spec.rb
740
- - spec/models/by_primary_cloud_facet_all_of_spec.rb
795
+ - spec/models/cloud_connector_collection_spec.rb
796
+ - spec/models/tape_collection_spec.rb
741
797
  - spec/models/system_group_spec.rb
742
- - spec/models/by_task_storage_facet_spec.rb
743
- - spec/models/by_secondary_nas_facet_all_of_spec.rb
798
+ - spec/models/metadata_definition_spec.rb
799
+ - spec/models/pool_up_spec.rb
800
+ - spec/models/storage_nas_share_facets_spec.rb
801
+ - spec/models/task_collection_spec.rb
802
+ - spec/models/by_file_extension_facet_all_of_spec.rb
803
+ - spec/models/by_secondary_bucket_all_of_spec.rb
804
+ - spec/models/system_group_collection_spec.rb
805
+ - spec/models/by_secondary_buckets_spec.rb
806
+ - spec/models/by_group_owner_facet_spec.rb
807
+ - spec/models/by_secondary_cloud_facet_all_of_spec.rb
808
+ - spec/models/by_metadata_bucket_all_of_spec.rb
744
809
  - spec/models/storage_nas_share_by_type_facets_spec.rb
745
810
  - spec/models/task_destination_down_spec.rb
746
- - spec/models/greater_than_or_equal_to_spec.rb
747
- - spec/models/by_primary_cloud_facet_spec.rb
748
- - spec/models/nodeum_file_with_path_all_of_spec.rb
749
- - spec/models/by_secondary_bucket_spec.rb
750
- - spec/models/mount_info_spec.rb
751
- - spec/models/nas_collection_spec.rb
752
- - spec/models/file_facet_all_of_spec.rb
753
- - spec/models/by_primary_nas_facet_all_of_spec.rb
754
- - spec/models/nodeum_file_with_path_spec.rb
755
- - spec/models/active_job_status_spec.rb
756
- - spec/models/task_source_collection_spec.rb
757
- - spec/models/nodeum_file_collection_spec.rb
758
- - spec/models/cloud_bucket_spec.rb
759
- - spec/models/cloud_connector_collection_spec.rb
760
- - spec/models/taken_spec.rb
761
- - spec/models/task_destination_collection_spec.rb
762
- - spec/models/import_file_collection_spec.rb
763
- - spec/models/error_spec.rb
764
- - spec/models/storage_cloud_bucket_by_type_facets_spec.rb
765
- - spec/models/task_execution_collection_spec.rb
766
- - spec/models/by_secondary_buckets_spec.rb
767
- - spec/models/cloud_bucket_collection_spec.rb
768
- - spec/models/by_user_owner_facet_spec.rb
769
- - spec/models/task_collection_spec.rb
770
- - spec/models/invalid_spec.rb
811
+ - spec/models/task_callback_spec.rb
771
812
  - spec/models/too_short_all_of_spec.rb
772
- - spec/models/tape_drive_all_of_spec.rb
773
- - spec/models/by_file_extension_facet_all_of_spec.rb
774
- - spec/models/nas_spec.rb
775
- - spec/models/pool_up_spec.rb
813
+ - spec/models/by_date_facet_buckets_spec.rb
814
+ - spec/models/by_task_workflow_facet_all_of_spec.rb
815
+ - spec/models/tape_library_device_collection_spec.rb
816
+ - spec/models/api_key_full_spec.rb
817
+ - spec/models/task_facet_metadata_key_bucket_all_of_spec.rb
818
+ - spec/models/by_metadata_bucket_spec.rb
819
+ - spec/models/task_execution_spec.rb
820
+ - spec/models/attribute_error_spec.rb
821
+ - spec/models/task_source_down_spec.rb
822
+ - spec/models/task_facet_metadata_key_buckets_spec.rb
823
+ - spec/models/size_to_date_facets_spec.rb
824
+ - spec/models/task_source_up_spec.rb
825
+ - spec/models/reset_sections_spec.rb
826
+ - spec/models/too_short_spec.rb
827
+ - spec/models/by_group_owner_facet_all_of_spec.rb
828
+ - spec/models/by_file_extension_facet_spec.rb
776
829
  - spec/models/type_to_secondary_facets_spec.rb
830
+ - spec/models/storage_by_type_facets_spec.rb
831
+ - spec/models/task_option_spec.rb
832
+ - spec/models/by_metadata_key_buckets_spec.rb
833
+ - spec/models/pool_collection_spec.rb
834
+ - spec/models/task_destination_up_spec.rb
777
835
  - spec/models/occurrence_less_than_spec.rb
778
- - spec/models/on_tapes_file_collection_spec.rb
836
+ - spec/models/task_facet_bucket_spec.rb
837
+ - spec/models/by_secondary_nas_facet_spec.rb
779
838
  - spec/models/nas_share_spec.rb
780
- - spec/models/container_privilege_collection_spec.rb
781
- - spec/models/api_key_scope_spec.rb
782
- - spec/models/task_option_collection_spec.rb
783
- - spec/models/tape_drive_device_spec.rb
784
- - spec/models/greater_than_all_of_spec.rb
785
- - spec/models/task_metadatum_spec.rb
786
- - spec/models/mount_collection_spec.rb
787
- - spec/models/storage_facet_spec.rb
788
- - spec/models/task_source_down_spec.rb
789
- - spec/models/tape_library_all_of_spec.rb
790
- - spec/models/occurrence_less_than_all_of_spec.rb
839
+ - spec/models/tape_stat_spec.rb
791
840
  - spec/models/by_date_facet_bucket_spec.rb
792
- - spec/models/task_schedule_spec.rb
793
- - spec/models/by_file_extension_facet_spec.rb
841
+ - spec/models/by_user_owner_facet_all_of_spec.rb
842
+ - spec/models/container_spec.rb
843
+ - spec/models/default_facet_spec.rb
844
+ - spec/models/quota_on_cache_spec.rb
794
845
  - spec/models/container_collection_spec.rb
795
- - spec/models/date_to_file_facets_spec.rb
796
- - spec/models/by_type_facet_buckets_spec.rb
797
- - spec/models/task_facet_buckets_spec.rb
798
- - spec/models/system_user_spec.rb
799
- - spec/models/by_primary_nas_facet_spec.rb
846
+ - spec/models/too_long_spec.rb
847
+ - spec/models/by_secondary_type_facet_spec.rb
848
+ - spec/models/task_facet_metadata_key_bucket_spec.rb
849
+ - spec/models/by_metadata_facet_spec.rb
850
+ - spec/models/file_metadata_definition_collection_spec.rb
851
+ - spec/models/tape_drive_collection_spec.rb
852
+ - spec/models/storage_cloud_bucket_by_type_facets_spec.rb
853
+ - spec/models/occurrence_less_than_or_equal_to_spec.rb
854
+ - spec/models/taken_spec.rb
855
+ - spec/models/by_metadata_key_bucket_spec.rb
856
+ - spec/models/task_destination_collection_spec.rb
857
+ - spec/models/by_metadata_key_bucket_all_of_spec.rb
858
+ - spec/models/storage_pool_by_type_facets_spec.rb
859
+ - spec/models/task_execution_collection_spec.rb
860
+ - spec/models/by_secondary_cloud_facet_spec.rb
861
+ - spec/models/cloud_bucket_spec.rb
862
+ - spec/models/by_primary_facet_spec.rb
863
+ - spec/models/user_configuration_spec.rb
864
+ - spec/models/tape_drive_device_spec.rb
865
+ - spec/models/by_primary_cloud_facet_spec.rb
866
+ - spec/models/less_than_all_of_spec.rb
867
+ - spec/models/by_secondary_nas_facet_all_of_spec.rb
868
+ - spec/models/pool_spec.rb
869
+ - spec/models/tape_library_collection_spec.rb
870
+ - spec/models/task_metadata_definition_all_of_spec.rb
871
+ - spec/models/task_source_collection_spec.rb
872
+ - spec/models/task_metadata_definition_collection_spec.rb
873
+ - spec/models/task_facet_metadata_bucket_spec.rb
874
+ - spec/models/import_file_with_path_spec.rb
875
+ - spec/models/nas_spec.rb
876
+ - spec/models/container_privilege_collection_spec.rb
877
+ - spec/models/by_secondary_bucket_spec.rb
878
+ - spec/models/pool_up_all_of_spec.rb
879
+ - spec/models/by_task_status_facet_all_of_spec.rb
880
+ - spec/models/reset_spec.rb
881
+ - spec/models/by_task_metadata_facet_spec.rb
882
+ - spec/models/cloud_bucket_simple_collection_spec.rb
883
+ - spec/models/storage_tape_by_type_facets_spec.rb
884
+ - spec/models/active_job_status_spec.rb
885
+ - spec/models/nas_share_collection_spec.rb
886
+ - spec/models/mount_info_spec.rb
887
+ - spec/models/cloud_bucket_collection_spec.rb
888
+ - spec/models/by_task_storage_facet_spec.rb
889
+ - spec/models/mount_status_spec.rb
890
+ - spec/models/nodeum_file_with_path_spec.rb
891
+ - spec/models/task_facet_metadata_value_buckets_spec.rb
892
+ - spec/models/less_than_or_equal_to_spec.rb
893
+ - spec/models/by_type_facet_bucket_spec.rb
894
+ - spec/models/nodeum_file_with_path_all_of_spec.rb
895
+ - spec/models/storage_tape_facets_spec.rb
800
896
  - spec/models/by_date_facet_bucket_all_of_spec.rb
801
- - spec/models/file_facet_spec.rb
802
- - spec/models/task_option_spec.rb
897
+ - spec/models/on_tapes_file_collection_spec.rb
898
+ - spec/models/tape_drive_spec.rb
899
+ - spec/models/by_primary_storage_facet_spec.rb
803
900
  - spec/models/tape_spec.rb
804
- - spec/models/frozen_spec.rb
805
- - spec/models/by_secondary_type_facet_all_of_spec.rb
806
- - spec/models/type_to_primary_facets_spec.rb
901
+ - spec/models/by_primary_type_facet_spec.rb
902
+ - spec/models/by_task_status_facet_spec.rb
903
+ - spec/models/nodeum_file_spec.rb
904
+ - spec/models/too_long_all_of_spec.rb
905
+ - spec/models/tape_library_spec.rb
906
+ - spec/models/tape_drive_all_of_spec.rb
907
+ - spec/models/by_task_storage_facet_all_of_spec.rb
908
+ - spec/models/storage_pool_facets_spec.rb
909
+ - spec/models/by_type_facet_buckets_spec.rb
910
+ - spec/models/by_metadata_facet_all_of_spec.rb
911
+ - spec/models/by_primary_nas_facet_spec.rb
912
+ - spec/models/tape_library_all_of_spec.rb
913
+ - spec/models/system_user_spec.rb
914
+ - spec/models/date_to_file_facets_spec.rb
915
+ - spec/models/task_facet_spec.rb
916
+ - spec/models/less_than_spec.rb
807
917
  - spec/models/task_by_workflow_bucket_spec.rb
808
- - spec/models/attribute_error_spec.rb
809
- - spec/models/task_by_workflow_bucket_all_of_spec.rb
810
- - spec/models/by_date_facet_spec.rb
811
- - spec/models/container_privilege_spec.rb
812
- - spec/models/cloud_connector_spec.rb
813
- - spec/models/by_primary_storage_facet_spec.rb
814
- - spec/models/by_primary_facet_spec.rb
918
+ - spec/models/primary_scan_spec.rb
919
+ - spec/models/by_secondary_tape_facet_spec.rb
920
+ - spec/models/storage_cloud_bucket_facets_spec.rb
921
+ - spec/models/by_size_facet_spec.rb
922
+ - spec/models/greater_than_spec.rb
923
+ - spec/models/task_option_collection_spec.rb
924
+ - spec/models/nodeum_file_collection_spec.rb
925
+ - spec/models/by_task_metadata_facet_all_of_spec.rb
926
+ - spec/models/api_key_full_all_of_spec.rb
927
+ - spec/models/user_configuration_collection_spec.rb
928
+ - spec/models/task_spec.rb
929
+ - spec/models/by_secondary_tape_facet_all_of_spec.rb
815
930
  - spec/models/import_file_spec.rb
816
- - spec/models/cloud_bucket_simple_collection_spec.rb
817
931
  - spec/models/taken_all_of_spec.rb
818
- - spec/models/pool_spec.rb
932
+ - spec/models/api_key_scope_spec.rb
933
+ - spec/models/type_to_primary_facets_spec.rb
934
+ - spec/models/import_file_collection_spec.rb
935
+ - spec/models/task_metadata_definition_spec.rb
936
+ - spec/models/storage_facet_spec.rb
937
+ - spec/models/by_secondary_type_facet_all_of_spec.rb
938
+ - spec/models/error_spec.rb
819
939
  - spec/models/by_task_workflow_facet_spec.rb
820
- - spec/models/by_secondary_tape_facet_spec.rb
821
- - spec/models/by_secondary_type_facet_spec.rb
822
- - spec/models/tape_drive_collection_spec.rb
823
- - spec/models/task_facet_spec.rb
824
- - spec/models/tape_stat_collection_spec.rb
825
- - spec/models/task_execution_spec.rb
826
- - spec/models/blank_spec.rb
827
- - spec/models/by_date_facet_buckets_spec.rb
940
+ - spec/models/task_metadatum_spec.rb
941
+ - spec/models/frozen_spec.rb
942
+ - spec/models/cloud_connector_spec.rb
943
+ - spec/models/by_date_facet_spec.rb
944
+ - spec/models/task_by_workflow_buckets_spec.rb
828
945
  - spec/models/tape_drive_device_collection_spec.rb
829
- - spec/models/tape_library_device_collection_spec.rb
830
- - spec/models/mount_notification_spec.rb
831
- - spec/models/primary_scan_spec.rb
832
- - spec/models/container_spec.rb
833
- - spec/models/task_callback_collection_spec.rb
834
- - spec/models/tape_stat_spec.rb
835
- - spec/models/less_than_all_of_spec.rb
836
- - spec/models/by_primary_facet_all_of_spec.rb
837
- - spec/models/storage_pool_facets_spec.rb
838
- - spec/models/too_long_spec.rb
839
- - spec/models/task_facet_all_of_spec.rb
840
- - spec/models/occurrence_less_than_or_equal_to_spec.rb
841
- - spec/models/storage_by_type_facets_spec.rb
842
- - spec/models/by_secondary_bucket_all_of_spec.rb
843
- - spec/models/by_primary_type_facet_spec.rb
844
- - spec/models/by_secondary_cloud_facet_all_of_spec.rb
845
- - spec/models/api_key_full_all_of_spec.rb
846
- - spec/models/tape_library_collection_spec.rb
847
- - spec/models/import_file_with_path_spec.rb
848
- - spec/models/size_to_date_facets_spec.rb
849
- - spec/models/storage_tape_facets_spec.rb
946
+ - spec/models/greater_than_or_equal_to_spec.rb
947
+ - spec/models/task_schedule_spec.rb
850
948
  - spec/models/on_tapes_file_spec.rb
851
- - spec/models/reset_sections_spec.rb
949
+ - spec/models/file_metadata_definition_spec.rb
950
+ - spec/models/task_facet_all_of_spec.rb
951
+ - spec/models/tape_library_device_spec.rb
952
+ - spec/models/task_facet_buckets_spec.rb
953
+ - spec/models/blank_spec.rb
954
+ - spec/models/by_primary_nas_facet_all_of_spec.rb
955
+ - spec/models/by_primary_facet_all_of_spec.rb
852
956
  - spec/models/api_key_spec.rb
853
- - spec/models/quota_on_cache_spec.rb
854
- - spec/models/less_than_spec.rb
855
- - spec/models/task_callback_spec.rb
856
- - spec/models/task_metadatum_collection_spec.rb
857
- - spec/models/by_task_storage_facet_all_of_spec.rb
858
- - spec/models/pool_collection_spec.rb
859
- - spec/models/by_task_status_facet_spec.rb
860
- - spec/models/by_secondary_tape_facet_all_of_spec.rb
861
- - spec/models/default_facet_spec.rb
862
- - spec/models/task_destination_up_spec.rb
957
+ - spec/models/greater_than_all_of_spec.rb
958
+ - spec/models/mount_collection_spec.rb
959
+ - spec/models/task_callback_collection_spec.rb
863
960
  - spec/models/by_secondary_facet_spec.rb
864
- - spec/models/tape_library_device_spec.rb
865
- - spec/models/by_group_owner_facet_spec.rb
866
- - spec/models/reset_spec.rb
961
+ - spec/models/task_by_workflow_bucket_all_of_spec.rb
962
+ - spec/models/nas_collection_spec.rb
963
+ - spec/models/file_facet_all_of_spec.rb
964
+ - spec/models/task_schedule_collection_spec.rb
867
965
  - spec/models/by_secondary_storage_facet_spec.rb
868
- - spec/models/task_facet_bucket_spec.rb
869
- - spec/models/by_type_facet_bucket_spec.rb
870
- - spec/models/system_group_collection_spec.rb
871
- - spec/models/pool_up_all_of_spec.rb
872
- - spec/models/task_by_workflow_buckets_spec.rb
873
- - spec/models/tape_library_spec.rb
874
- - spec/models/nodeum_file_spec.rb
875
- - spec/models/less_than_or_equal_to_spec.rb
966
+ - spec/models/mount_notification_spec.rb
967
+ - spec/models/occurrence_less_than_all_of_spec.rb
876
968
  - spec/models/system_user_collection_spec.rb
877
- - spec/models/tape_drive_spec.rb
878
- - spec/models/task_spec.rb
879
- - spec/models/task_schedule_collection_spec.rb
880
- - spec/models/too_long_all_of_spec.rb
881
- - spec/models/storage_nas_share_facets_spec.rb
882
- - spec/models/api_key_full_spec.rb
883
- - spec/models/task_source_up_spec.rb
884
- - spec/models/nas_share_collection_spec.rb
885
- - spec/models/mount_status_spec.rb
886
- - spec/models/storage_pool_by_type_facets_spec.rb
887
- - spec/models/tape_collection_spec.rb
888
- - spec/models/by_secondary_cloud_facet_spec.rb
889
- - spec/models/user_configuration_collection_spec.rb
969
+ - spec/models/by_primary_cloud_facet_all_of_spec.rb
970
+ - spec/models/file_facet_spec.rb
971
+ - spec/models/by_metadata_value_buckets_spec.rb
972
+ - spec/models/tape_stat_collection_spec.rb
973
+ - spec/models/task_metadatum_collection_spec.rb
974
+ - spec/models/invalid_spec.rb
975
+ - spec/models/by_user_owner_facet_spec.rb
976
+ - spec/models/container_privilege_spec.rb
977
+ - spec/models/api_key_collection_spec.rb
890
978
  - spec/spec_helper.rb