1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-12-01 22:29:52 +02:00

Main build (Jenkins)

This commit is contained in:
Vitaly the Alpaca (bot)
2025-05-04 21:43:56 +03:00
parent 499c2f84c5
commit d19df628f6
115 changed files with 11135 additions and 8114 deletions

View File

@@ -0,0 +1,42 @@
---
sidebar_position: 2
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Add AWS4 authorization
Adds data for AWS4 authorization
`Function AddAWS4Authorization(Val AccessKey, Val SecretKey, Val Region, Val Service = "s3") Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| AccessKey | - | String | ✔ | Access key for authorization |
| SecretKey | - | String | ✔ | Secret key for authorization |
| Region | - | String | ✔ | Service region |
| Service | - | String | ✖ | Type of service, if different from s3 |
Returns: DataProcessorObject.OPI_HTTPClient - This processor object
<br/>
:::caution
**NOCLI:** this method is not available in CLI version
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
```

View File

@@ -0,0 +1,40 @@
---
sidebar_position: 1
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Add Basic authorization
Adds standard authorization by username and password
`Function AddBasicAuthorization(Val User, Val Password) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| User | - | String | &#x2714; | Users name |
| Password | - | String | &#x2714; | Password |
Returns: DataProcessorObject.OPI_HTTPClient - This processor object
<br/>
:::caution
**NOCLI:** this method is not available in CLI version
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
```

View File

@@ -0,0 +1,4 @@
{
"label": "Authorization",
"position": "6"
}