Skip to content

Commit 39c365f

Browse files
committed
v3.4.0
1 parent a12e648 commit 39c365f

File tree

635 files changed

+74748
-8927
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

635 files changed

+74748
-8927
lines changed

.openapi-generator/FILES

Lines changed: 142 additions & 8 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 137 additions & 5 deletions
Large diffs are not rendered by default.

_layouts/default.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
</section>
2828
<footer>
2929
<p>
30-
Releases: <a href='/'>Latest</a> &#183; <!--VERSIONS-START--><a href='/versions/3.3.2'>3.3.2</a> &#183; <a href='/versions/3.3.1'>3.3.1</a> &#183; <a href='/versions/3.3.0'>3.3.0</a> &#183; <a href='/versions/3.2.0'>3.2.0</a> &#183; <a href='/versions/3.0.4'>3.0.4</a><!--VERSIONS-END-->
30+
Releases: <a href='/'>Latest</a> &#183; <!--VERSIONS-START--><a href='/versions/3.4.0'>3.4.0</a> &#183; <a href='/versions/3.3.2'>3.3.2</a> &#183; <a href='/versions/3.3.1'>3.3.1</a> &#183; <a href='/versions/3.3.0'>3.3.0</a> &#183; <a href='/versions/3.2.0'>3.2.0</a> &#183; <a href='/versions/3.0.4'>3.0.4</a><!--VERSIONS-END-->
3131
</p>
3232
<p>Maintained by <a href="https://github.com/elements-storage">elements-storage</a> on GitHub.</p>
3333
<p><small>Hosted on GitHub Pages &mdash; Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>

docs/AWSApi.md

Lines changed: 29 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# elements_sdk.AWSApi
22

3-
All URIs are relative to *http://localhost*
3+
All URIs are relative to *https://elements.local*
44
>
55
Method | HTTP request | Description
66
------------- | ------------- | -------------
@@ -20,7 +20,7 @@ Method | HTTP request | Description
2020

2121
# **create_aws_account**
2222

23-
def create_aws_account(data) -> AWSAccount
23+
def create_aws_account(aws_account) -> AWSAccount
2424

2525

2626

@@ -40,16 +40,16 @@ configuration = elements_sdk.Configuration()
4040
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
4141
configuration.api_key_prefix['Authorization'] = 'Bearer'
4242

43-
configuration.host = "http://localhost"
43+
configuration.host = "https://elements.local"
4444

4545
# Enter a context with an instance of the API client
4646
with elements_sdk.ApiClient(configuration) as api_client:
4747
# Create an instance of the API class
4848
api_instance = elements_sdk.AWSApi(api_client)
49-
data = elements_sdk.AWSAccount() # AWSAccount |
49+
aws_account = elements_sdk.AWSAccount() # AWSAccount |
5050

5151
try:
52-
api_response = api_instance.create_aws_account(data)
52+
api_response = api_instance.create_aws_account(aws_account)
5353
pprint(api_response)
5454
except ApiException as e:
5555
print("Exception when calling AWSApi->create_aws_account: %s\n" % e)
@@ -60,7 +60,7 @@ with elements_sdk.ApiClient(configuration) as api_client:
6060

6161
Name | Type | Description | Notes
6262
------------- | ------------- | ------------- | -------------
63-
**data** | [**AWSAccount**](AWSAccount.md)| |
63+
**aws_account** | [**AWSAccount**](AWSAccount.md)| |
6464

6565
### Return type
6666

@@ -73,7 +73,7 @@ Name | Type | Description | Notes
7373

7474
# **delete_aws_account**
7575

76-
def delete_aws_account(id) -> object
76+
def delete_aws_account(id)
7777

7878

7979

@@ -93,7 +93,7 @@ configuration = elements_sdk.Configuration()
9393
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
9494
configuration.api_key_prefix['Authorization'] = 'Bearer'
9595

96-
configuration.host = "http://localhost"
96+
configuration.host = "https://elements.local"
9797

9898
# Enter a context with an instance of the API client
9999
with elements_sdk.ApiClient(configuration) as api_client:
@@ -102,8 +102,7 @@ with elements_sdk.ApiClient(configuration) as api_client:
102102
id = 56 # int | A unique integer value identifying this AWS Account.
103103

104104
try:
105-
api_response = api_instance.delete_aws_account(id)
106-
pprint(api_response)
105+
api_instance.delete_aws_account(id)
107106
except ApiException as e:
108107
print("Exception when calling AWSApi->delete_aws_account: %s\n" % e)
109108
```
@@ -117,7 +116,7 @@ Name | Type | Description | Notes
117116

118117
### Return type
119118

120-
**object**
119+
void (empty response body)
121120

122121
[[Back to top]](#) [[Back to API list]](../#documentation-for-api-endpoints) [[Back to Model list]](../#documentation-for-models) [[Back to README]](../)
123122

@@ -146,7 +145,7 @@ configuration = elements_sdk.Configuration()
146145
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
147146
configuration.api_key_prefix['Authorization'] = 'Bearer'
148147

149-
configuration.host = "http://localhost"
148+
configuration.host = "https://elements.local"
150149

151150
# Enter a context with an instance of the API client
152151
with elements_sdk.ApiClient(configuration) as api_client:
@@ -207,7 +206,7 @@ configuration = elements_sdk.Configuration()
207206
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
208207
configuration.api_key_prefix['Authorization'] = 'Bearer'
209208

210-
configuration.host = "http://localhost"
209+
configuration.host = "https://elements.local"
211210

212211
# Enter a context with an instance of the API client
213212
with elements_sdk.ApiClient(configuration) as api_client:
@@ -260,7 +259,7 @@ configuration = elements_sdk.Configuration()
260259
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
261260
configuration.api_key_prefix['Authorization'] = 'Bearer'
262261

263-
configuration.host = "http://localhost"
262+
configuration.host = "https://elements.local"
264263

265264
# Enter a context with an instance of the API client
266265
with elements_sdk.ApiClient(configuration) as api_client:
@@ -313,7 +312,7 @@ configuration = elements_sdk.Configuration()
313312
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
314313
configuration.api_key_prefix['Authorization'] = 'Bearer'
315314

316-
configuration.host = "http://localhost"
315+
configuration.host = "https://elements.local"
317316

318317
# Enter a context with an instance of the API client
319318
with elements_sdk.ApiClient(configuration) as api_client:
@@ -346,7 +345,7 @@ Name | Type | Description | Notes
346345

347346
# **patch_aws_account**
348347

349-
def patch_aws_account(id, data) -> AWSAccount
348+
def patch_aws_account(id, aws_account_partial_update) -> AWSAccount
350349

351350

352351

@@ -366,17 +365,17 @@ configuration = elements_sdk.Configuration()
366365
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
367366
configuration.api_key_prefix['Authorization'] = 'Bearer'
368367

369-
configuration.host = "http://localhost"
368+
configuration.host = "https://elements.local"
370369

371370
# Enter a context with an instance of the API client
372371
with elements_sdk.ApiClient(configuration) as api_client:
373372
# Create an instance of the API class
374373
api_instance = elements_sdk.AWSApi(api_client)
375374
id = 56 # int | A unique integer value identifying this AWS Account.
376-
data = elements_sdk.AWSAccountPartialUpdate() # AWSAccountPartialUpdate |
375+
aws_account_partial_update = elements_sdk.AWSAccountPartialUpdate() # AWSAccountPartialUpdate |
377376

378377
try:
379-
api_response = api_instance.patch_aws_account(id, data)
378+
api_response = api_instance.patch_aws_account(id, aws_account_partial_update)
380379
pprint(api_response)
381380
except ApiException as e:
382381
print("Exception when calling AWSApi->patch_aws_account: %s\n" % e)
@@ -388,7 +387,7 @@ data = elements_sdk.AWSAccountPartialUpdate() # AWSAccountPartialUpdate |
388387
Name | Type | Description | Notes
389388
------------- | ------------- | ------------- | -------------
390389
**id** | **int**| A unique integer value identifying this AWS Account. |
391-
**data** | [**AWSAccountPartialUpdate**](AWSAccountPartialUpdate.md)| |
390+
**aws_account_partial_update** | [**AWSAccountPartialUpdate**](AWSAccountPartialUpdate.md)| |
392391

393392
### Return type
394393

@@ -401,7 +400,7 @@ Name | Type | Description | Notes
401400

402401
# **test_aws_account_credentials**
403402

404-
def test_aws_account_credentials(data) -> TestAWSCredentialsResponse
403+
def test_aws_account_credentials(test_aws_credentials_request) -> TestAWSCredentialsResponse
405404

406405

407406

@@ -421,16 +420,16 @@ configuration = elements_sdk.Configuration()
421420
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
422421
configuration.api_key_prefix['Authorization'] = 'Bearer'
423422

424-
configuration.host = "http://localhost"
423+
configuration.host = "https://elements.local"
425424

426425
# Enter a context with an instance of the API client
427426
with elements_sdk.ApiClient(configuration) as api_client:
428427
# Create an instance of the API class
429428
api_instance = elements_sdk.AWSApi(api_client)
430-
data = elements_sdk.TestAWSCredentialsRequest() # TestAWSCredentialsRequest |
429+
test_aws_credentials_request = elements_sdk.TestAWSCredentialsRequest() # TestAWSCredentialsRequest |
431430

432431
try:
433-
api_response = api_instance.test_aws_account_credentials(data)
432+
api_response = api_instance.test_aws_account_credentials(test_aws_credentials_request)
434433
pprint(api_response)
435434
except ApiException as e:
436435
print("Exception when calling AWSApi->test_aws_account_credentials: %s\n" % e)
@@ -441,7 +440,7 @@ with elements_sdk.ApiClient(configuration) as api_client:
441440

442441
Name | Type | Description | Notes
443442
------------- | ------------- | ------------- | -------------
444-
**data** | [**TestAWSCredentialsRequest**](TestAWSCredentialsRequest.md)| |
443+
**test_aws_credentials_request** | [**TestAWSCredentialsRequest**](TestAWSCredentialsRequest.md)| |
445444

446445
### Return type
447446

@@ -454,7 +453,7 @@ Name | Type | Description | Notes
454453

455454
# **update_aws_account**
456455

457-
def update_aws_account(id, data) -> AWSAccount
456+
def update_aws_account(id, aws_account) -> AWSAccount
458457

459458

460459

@@ -474,17 +473,17 @@ configuration = elements_sdk.Configuration()
474473
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
475474
configuration.api_key_prefix['Authorization'] = 'Bearer'
476475

477-
configuration.host = "http://localhost"
476+
configuration.host = "https://elements.local"
478477

479478
# Enter a context with an instance of the API client
480479
with elements_sdk.ApiClient(configuration) as api_client:
481480
# Create an instance of the API class
482481
api_instance = elements_sdk.AWSApi(api_client)
483482
id = 56 # int | A unique integer value identifying this AWS Account.
484-
data = elements_sdk.AWSAccount() # AWSAccount |
483+
aws_account = elements_sdk.AWSAccount() # AWSAccount |
485484

486485
try:
487-
api_response = api_instance.update_aws_account(id, data)
486+
api_response = api_instance.update_aws_account(id, aws_account)
488487
pprint(api_response)
489488
except ApiException as e:
490489
print("Exception when calling AWSApi->update_aws_account: %s\n" % e)
@@ -496,7 +495,7 @@ data = elements_sdk.AWSAccount() # AWSAccount |
496495
Name | Type | Description | Notes
497496
------------- | ------------- | ------------- | -------------
498497
**id** | **int**| A unique integer value identifying this AWS Account. |
499-
**data** | [**AWSAccount**](AWSAccount.md)| |
498+
**aws_account** | [**AWSAccount**](AWSAccount.md)| |
500499

501500
### Return type
502501

docs/AddAssetsToClickGallery.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# AddAssetsToClickGallery
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**assets** | **list[str]** | |
8+
9+
[[Back to Model list]](../#documentation-for-models) [[Back to API list]](../#documentation-for-api-endpoints) [[Back to README]](../)
10+
11+

docs/ArchiveEndpointRequest.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# ArchiveEndpointRequest
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**source** | [**list[TapeJobSource]**](TapeJobSource.md) | |
8+
**start_date** | **datetime** | |
9+
**name** | **str** | |
10+
**group** | **int** | | [optional]
11+
**group2** | **int** | | [optional]
12+
**export** | **bool** | | [optional]
13+
**export2** | **bool** | | [optional]
14+
15+
[[Back to Model list]](../#documentation-for-models) [[Back to API list]](../#documentation-for-api-endpoints) [[Back to README]](../)
16+
17+

docs/Asset.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,18 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**id** | **int** | | [optional] [readonly]
8-
**urls** | **dict(str, str)** | | [optional] [readonly]
98
**proxies** | [**list[Proxy]**](Proxy.md) | | [optional] [readonly]
109
**default_proxy** | [**Proxy**](Proxy.md) | | [optional]
1110
**info** | **dict(str, str)** | | [optional] [readonly]
1211
**proxy_info** | **dict(str, str)** | | [optional] [readonly]
1312
**custom_fields** | **dict(str, str)** | |
14-
**tags** | [**list[Tag]**](Tag.md) | |
13+
**tags** | **list[int]** | |
1514
**resolved_permission** | [**MediaRootPermission**](MediaRootPermission.md) | | [optional]
16-
**bundles** | **list[dict(str, str)]** | | [optional] [readonly]
1715
**backups** | **str** | | [optional] [readonly]
1816
**proxies_generated** | **bool** | | [optional] [readonly]
1917
**proxies_failed** | **bool** | | [optional] [readonly]
2018
**modified_by** | [**ElementsUserMini**](ElementsUserMini.md) | | [optional]
19+
**bundles** | [**list[MediaFileBundleMini]**](MediaFileBundleMini.md) | | [optional] [readonly]
2120
**sync_id** | **str** | | [optional] [readonly]
2221
**display_name** | **str** | | [optional] [readonly]
2322
**has_files** | **bool** | | [optional] [readonly]

docs/AssetMini.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,9 @@ Name | Type | Description | Notes
77
**id** | **int** | | [optional] [readonly]
88
**sync_id** | **str** | | [optional] [readonly]
99
**default_proxy** | [**Proxy**](Proxy.md) | | [optional]
10-
**urls** | **dict(str, str)** | | [optional] [readonly]
1110
**type** | **str** | | [optional] [readonly]
1211
**display_name** | **str** | | [optional] [readonly]
13-
**info** | **str** | | [optional] [readonly]
12+
**info** | **dict(str, str)** | | [optional] [readonly]
1413
**thumbnail_generated** | **bool** | | [optional] [readonly]
1514

1615
[[Back to Model list]](../#documentation-for-models) [[Back to API list]](../#documentation-for-api-endpoints) [[Back to README]](../)

docs/AssetMiniReference.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# AssetMiniReference
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**id** | **int** | | [optional]
8+
**sync_id** | **str** | | [optional] [readonly]
9+
**default_proxy** | [**Proxy**](Proxy.md) | | [optional]
10+
**type** | **str** | | [optional] [readonly]
11+
**display_name** | **str** | | [optional] [readonly]
12+
**info** | **dict(str, str)** | | [optional] [readonly]
13+
**thumbnail_generated** | **bool** | | [optional] [readonly]
14+
15+
[[Back to Model list]](../#documentation-for-models) [[Back to API list]](../#documentation-for-api-endpoints) [[Back to README]](../)
16+
17+

docs/AssetPartialUpdate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**custom_fields** | **dict(str, str)** | | [optional]
8-
**tags** | [**list[Tag]**](Tag.md) | | [optional]
8+
**tags** | **list[int]** | | [optional]
99
**set** | **int** | | [optional]
1010

1111
[[Back to Model list]](../#documentation-for-models) [[Back to API list]](../#documentation-for-api-endpoints) [[Back to README]](../)

0 commit comments

Comments
 (0)