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()
4040configuration.api_key[' Authorization' ] = ' YOUR_API_KEY'
4141configuration.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
4646with 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
6161Name | 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()
9393configuration.api_key[' Authorization' ] = ' YOUR_API_KEY'
9494configuration.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
9999with 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()
146145configuration.api_key[' Authorization' ] = ' YOUR_API_KEY'
147146configuration.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
152151with elements_sdk.ApiClient(configuration) as api_client:
@@ -207,7 +206,7 @@ configuration = elements_sdk.Configuration()
207206configuration.api_key[' Authorization' ] = ' YOUR_API_KEY'
208207configuration.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
213212with elements_sdk.ApiClient(configuration) as api_client:
@@ -260,7 +259,7 @@ configuration = elements_sdk.Configuration()
260259configuration.api_key[' Authorization' ] = ' YOUR_API_KEY'
261260configuration.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
266265with elements_sdk.ApiClient(configuration) as api_client:
@@ -313,7 +312,7 @@ configuration = elements_sdk.Configuration()
313312configuration.api_key[' Authorization' ] = ' YOUR_API_KEY'
314313configuration.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
319318with 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()
366365configuration.api_key[' Authorization' ] = ' YOUR_API_KEY'
367366configuration.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
372371with 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 |
388387Name | 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()
421420configuration.api_key[' Authorization' ] = ' YOUR_API_KEY'
422421configuration.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
427426with 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
442441Name | 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()
474473configuration.api_key[' Authorization' ] = ' YOUR_API_KEY'
475474configuration.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
480479with 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 |
496495Name | 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
0 commit comments