@pidginhost/sdk 0.5.0 → 0.7.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.
- package/.openapi-generator/FILES +39 -0
- package/CHANGELOG.md +13 -0
- package/README.md +115 -2
- package/api.ts +9092 -3385
- package/dist/api.d.ts +2573 -62
- package/dist/api.js +8148 -3042
- package/dist/esm/api.d.ts +2573 -62
- package/dist/esm/api.js +8138 -3036
- package/docs/ApiCredential.md +32 -0
- package/docs/Bucket.md +40 -0
- package/docs/CloudApi.md +1312 -134
- package/docs/ClusterAdd.md +2 -0
- package/docs/ClusterDetail.md +4 -0
- package/docs/DnsSourceEnum.md +13 -0
- package/docs/DomainAdd.md +28 -0
- package/docs/EmailApi.md +2828 -0
- package/docs/EmailService.md +44 -0
- package/docs/FloatingIPAuthorization.md +27 -0
- package/docs/FloatingIPAuthorizeRequest.md +20 -0
- package/docs/FloatingIPv4.md +32 -0
- package/docs/FloatingIPv4AuthorizeResponse.md +20 -0
- package/docs/FloatingIPv4Create.md +20 -0
- package/docs/FloatingIPv4UnauthorizeResponse.md +20 -0
- package/docs/FloatingIPv6.md +32 -0
- package/docs/FloatingIPv6AuthorizeResponse.md +20 -0
- package/docs/FloatingIPv6Create.md +20 -0
- package/docs/FloatingIPv6UnauthorizeResponse.md +20 -0
- package/docs/InboundRoute.md +34 -0
- package/docs/KubeVersionEnum.md +4 -4
- package/docs/ModeEnum.md +11 -0
- package/docs/PaginatedApiCredentialList.md +26 -0
- package/docs/PaginatedEmailServiceList.md +26 -0
- package/docs/PaginatedFloatingIPAuthorizationList.md +26 -0
- package/docs/PaginatedFloatingIPv4List.md +26 -0
- package/docs/PaginatedFloatingIPv6List.md +26 -0
- package/docs/PaginatedInboundRouteList.md +26 -0
- package/docs/PaginatedSandboxAddressList.md +26 -0
- package/docs/PaginatedSendingDomainList.md +26 -0
- package/docs/PaginatedSmtpCredentialList.md +26 -0
- package/docs/PaginatedSuppressionEntryList.md +26 -0
- package/docs/PatchedClusterDetail.md +4 -0
- package/docs/PatchedEmailService.md +44 -0
- package/docs/PatchedInboundRoute.md +34 -0
- package/docs/PatchedSubscribe.md +20 -0
- package/docs/ReasonEnum.md +15 -0
- package/docs/SandboxAddress.md +26 -0
- package/docs/SendingDomain.md +42 -0
- package/docs/SendingDomainStatusEnum.md +17 -0
- package/docs/ServerAdd.md +2 -0
- package/docs/SmtpCredential.md +30 -0
- package/docs/Subscribe.md +20 -0
- package/docs/SuppressionEntry.md +28 -0
- package/docs/TierEnum.md +13 -0
- package/package.json +1 -1
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# EmailService
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **number** | | [readonly] [default to undefined]
|
|
9
|
+
**tier** | **string** | | [readonly] [default to undefined]
|
|
10
|
+
**status** | [**StatusA57Enum**](StatusA57Enum.md) | | [readonly] [default to undefined]
|
|
11
|
+
**sandbox_mode** | **boolean** | | [readonly] [default to undefined]
|
|
12
|
+
**auto_suspended** | **boolean** | | [readonly] [default to undefined]
|
|
13
|
+
**auto_suspend_reason** | **string** | | [readonly] [default to undefined]
|
|
14
|
+
**msgs_sent_24h** | **number** | | [readonly] [default to undefined]
|
|
15
|
+
**msgs_sent_30d** | **number** | | [readonly] [default to undefined]
|
|
16
|
+
**bounce_rate_pct** | **string** | | [readonly] [default to undefined]
|
|
17
|
+
**complaint_rate_pct** | **string** | | [readonly] [default to undefined]
|
|
18
|
+
**dedicated_ip_addon** | **boolean** | | [readonly] [default to undefined]
|
|
19
|
+
**quota_monthly** | **string** | | [readonly] [default to undefined]
|
|
20
|
+
**price_monthly_eur** | **string** | | [readonly] [default to undefined]
|
|
21
|
+
|
|
22
|
+
## Example
|
|
23
|
+
|
|
24
|
+
```typescript
|
|
25
|
+
import { EmailService } from '@pidginhost/sdk';
|
|
26
|
+
|
|
27
|
+
const instance: EmailService = {
|
|
28
|
+
id,
|
|
29
|
+
tier,
|
|
30
|
+
status,
|
|
31
|
+
sandbox_mode,
|
|
32
|
+
auto_suspended,
|
|
33
|
+
auto_suspend_reason,
|
|
34
|
+
msgs_sent_24h,
|
|
35
|
+
msgs_sent_30d,
|
|
36
|
+
bounce_rate_pct,
|
|
37
|
+
complaint_rate_pct,
|
|
38
|
+
dedicated_ip_addon,
|
|
39
|
+
quota_monthly,
|
|
40
|
+
price_monthly_eur,
|
|
41
|
+
};
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# FloatingIPAuthorization
|
|
2
|
+
|
|
3
|
+
Read-only authorization row for either v4 or v6 (shape is identical).
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**id** | **number** | | [readonly] [default to undefined]
|
|
10
|
+
**server_id** | **number** | | [readonly] [default to undefined]
|
|
11
|
+
**server_hostname** | **string** | | [readonly] [default to undefined]
|
|
12
|
+
**created_at** | **string** | | [readonly] [default to undefined]
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import { FloatingIPAuthorization } from '@pidginhost/sdk';
|
|
18
|
+
|
|
19
|
+
const instance: FloatingIPAuthorization = {
|
|
20
|
+
id,
|
|
21
|
+
server_id,
|
|
22
|
+
server_hostname,
|
|
23
|
+
created_at,
|
|
24
|
+
};
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# FloatingIPAuthorizeRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**server_id** | **number** | | [default to undefined]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { FloatingIPAuthorizeRequest } from '@pidginhost/sdk';
|
|
14
|
+
|
|
15
|
+
const instance: FloatingIPAuthorizeRequest = {
|
|
16
|
+
server_id,
|
|
17
|
+
};
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# FloatingIPv4
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **number** | | [readonly] [default to undefined]
|
|
9
|
+
**address** | **string** | | [readonly] [default to undefined]
|
|
10
|
+
**gateway** | **string** | | [readonly] [default to undefined]
|
|
11
|
+
**prefix** | **number** | | [readonly] [default to undefined]
|
|
12
|
+
**label** | **string** | | [optional] [default to undefined]
|
|
13
|
+
**authorized_vm_count** | **number** | | [readonly] [default to undefined]
|
|
14
|
+
**created_at** | **string** | | [readonly] [default to undefined]
|
|
15
|
+
|
|
16
|
+
## Example
|
|
17
|
+
|
|
18
|
+
```typescript
|
|
19
|
+
import { FloatingIPv4 } from '@pidginhost/sdk';
|
|
20
|
+
|
|
21
|
+
const instance: FloatingIPv4 = {
|
|
22
|
+
id,
|
|
23
|
+
address,
|
|
24
|
+
gateway,
|
|
25
|
+
prefix,
|
|
26
|
+
label,
|
|
27
|
+
authorized_vm_count,
|
|
28
|
+
created_at,
|
|
29
|
+
};
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# FloatingIPv4AuthorizeResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**authorized** | **boolean** | | [default to undefined]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { FloatingIPv4AuthorizeResponse } from '@pidginhost/sdk';
|
|
14
|
+
|
|
15
|
+
const instance: FloatingIPv4AuthorizeResponse = {
|
|
16
|
+
authorized,
|
|
17
|
+
};
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# FloatingIPv4Create
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**label** | **string** | | [optional] [default to '']
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { FloatingIPv4Create } from '@pidginhost/sdk';
|
|
14
|
+
|
|
15
|
+
const instance: FloatingIPv4Create = {
|
|
16
|
+
label,
|
|
17
|
+
};
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# FloatingIPv4UnauthorizeResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**unauthorized** | **boolean** | | [default to undefined]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { FloatingIPv4UnauthorizeResponse } from '@pidginhost/sdk';
|
|
14
|
+
|
|
15
|
+
const instance: FloatingIPv4UnauthorizeResponse = {
|
|
16
|
+
unauthorized,
|
|
17
|
+
};
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# FloatingIPv6
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **number** | | [readonly] [default to undefined]
|
|
9
|
+
**address** | **string** | | [readonly] [default to undefined]
|
|
10
|
+
**gateway** | **string** | | [readonly] [default to undefined]
|
|
11
|
+
**prefix** | **number** | | [readonly] [default to undefined]
|
|
12
|
+
**label** | **string** | | [optional] [default to undefined]
|
|
13
|
+
**authorized_vm_count** | **number** | | [readonly] [default to undefined]
|
|
14
|
+
**created_at** | **string** | | [readonly] [default to undefined]
|
|
15
|
+
|
|
16
|
+
## Example
|
|
17
|
+
|
|
18
|
+
```typescript
|
|
19
|
+
import { FloatingIPv6 } from '@pidginhost/sdk';
|
|
20
|
+
|
|
21
|
+
const instance: FloatingIPv6 = {
|
|
22
|
+
id,
|
|
23
|
+
address,
|
|
24
|
+
gateway,
|
|
25
|
+
prefix,
|
|
26
|
+
label,
|
|
27
|
+
authorized_vm_count,
|
|
28
|
+
created_at,
|
|
29
|
+
};
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# FloatingIPv6AuthorizeResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**authorized** | **boolean** | | [default to undefined]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { FloatingIPv6AuthorizeResponse } from '@pidginhost/sdk';
|
|
14
|
+
|
|
15
|
+
const instance: FloatingIPv6AuthorizeResponse = {
|
|
16
|
+
authorized,
|
|
17
|
+
};
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# FloatingIPv6Create
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**label** | **string** | | [optional] [default to '']
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { FloatingIPv6Create } from '@pidginhost/sdk';
|
|
14
|
+
|
|
15
|
+
const instance: FloatingIPv6Create = {
|
|
16
|
+
label,
|
|
17
|
+
};
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# FloatingIPv6UnauthorizeResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**unauthorized** | **boolean** | | [default to undefined]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { FloatingIPv6UnauthorizeResponse } from '@pidginhost/sdk';
|
|
14
|
+
|
|
15
|
+
const instance: FloatingIPv6UnauthorizeResponse = {
|
|
16
|
+
unauthorized,
|
|
17
|
+
};
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# InboundRoute
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **number** | | [readonly] [default to undefined]
|
|
9
|
+
**domain** | **number** | | [readonly] [default to undefined]
|
|
10
|
+
**pattern** | **string** | | [default to undefined]
|
|
11
|
+
**mode** | [**ModeEnum**](ModeEnum.md) | | [default to undefined]
|
|
12
|
+
**webhook_url** | **string** | | [optional] [default to undefined]
|
|
13
|
+
**forward_to** | **string** | | [optional] [default to undefined]
|
|
14
|
+
**active** | **boolean** | | [optional] [default to undefined]
|
|
15
|
+
**created_at** | **string** | | [readonly] [default to undefined]
|
|
16
|
+
|
|
17
|
+
## Example
|
|
18
|
+
|
|
19
|
+
```typescript
|
|
20
|
+
import { InboundRoute } from '@pidginhost/sdk';
|
|
21
|
+
|
|
22
|
+
const instance: InboundRoute = {
|
|
23
|
+
id,
|
|
24
|
+
domain,
|
|
25
|
+
pattern,
|
|
26
|
+
mode,
|
|
27
|
+
webhook_url,
|
|
28
|
+
forward_to,
|
|
29
|
+
active,
|
|
30
|
+
created_at,
|
|
31
|
+
};
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
package/docs/KubeVersionEnum.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# KubeVersionEnum
|
|
2
2
|
|
|
3
|
-
* `1.33.
|
|
3
|
+
* `1.33.11` - 1.33.11 * `1.34.7` - 1.34.7 * `1.35.4` - 1.35.4
|
|
4
4
|
|
|
5
5
|
## Enum
|
|
6
6
|
|
|
7
|
-
* `
|
|
7
|
+
* `_13311` (value: `'1.33.11'`)
|
|
8
8
|
|
|
9
|
-
* `
|
|
9
|
+
* `_1347` (value: `'1.34.7'`)
|
|
10
10
|
|
|
11
|
-
* `
|
|
11
|
+
* `_1354` (value: `'1.35.4'`)
|
|
12
12
|
|
|
13
13
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
package/docs/ModeEnum.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# ModeEnum
|
|
2
|
+
|
|
3
|
+
* `webhook` - HTTP webhook * `forward` - Forward
|
|
4
|
+
|
|
5
|
+
## Enum
|
|
6
|
+
|
|
7
|
+
* `Webhook` (value: `'webhook'`)
|
|
8
|
+
|
|
9
|
+
* `Forward` (value: `'forward'`)
|
|
10
|
+
|
|
11
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# PaginatedApiCredentialList
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**count** | **number** | | [default to undefined]
|
|
9
|
+
**next** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**previous** | **string** | | [optional] [default to undefined]
|
|
11
|
+
**results** | [**Array<ApiCredential>**](ApiCredential.md) | | [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { PaginatedApiCredentialList } from '@pidginhost/sdk';
|
|
17
|
+
|
|
18
|
+
const instance: PaginatedApiCredentialList = {
|
|
19
|
+
count,
|
|
20
|
+
next,
|
|
21
|
+
previous,
|
|
22
|
+
results,
|
|
23
|
+
};
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# PaginatedEmailServiceList
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**count** | **number** | | [default to undefined]
|
|
9
|
+
**next** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**previous** | **string** | | [optional] [default to undefined]
|
|
11
|
+
**results** | [**Array<EmailService>**](EmailService.md) | | [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { PaginatedEmailServiceList } from '@pidginhost/sdk';
|
|
17
|
+
|
|
18
|
+
const instance: PaginatedEmailServiceList = {
|
|
19
|
+
count,
|
|
20
|
+
next,
|
|
21
|
+
previous,
|
|
22
|
+
results,
|
|
23
|
+
};
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# PaginatedFloatingIPAuthorizationList
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**count** | **number** | | [default to undefined]
|
|
9
|
+
**next** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**previous** | **string** | | [optional] [default to undefined]
|
|
11
|
+
**results** | [**Array<FloatingIPAuthorization>**](FloatingIPAuthorization.md) | | [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { PaginatedFloatingIPAuthorizationList } from '@pidginhost/sdk';
|
|
17
|
+
|
|
18
|
+
const instance: PaginatedFloatingIPAuthorizationList = {
|
|
19
|
+
count,
|
|
20
|
+
next,
|
|
21
|
+
previous,
|
|
22
|
+
results,
|
|
23
|
+
};
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# PaginatedFloatingIPv4List
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**count** | **number** | | [default to undefined]
|
|
9
|
+
**next** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**previous** | **string** | | [optional] [default to undefined]
|
|
11
|
+
**results** | [**Array<FloatingIPv4>**](FloatingIPv4.md) | | [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { PaginatedFloatingIPv4List } from '@pidginhost/sdk';
|
|
17
|
+
|
|
18
|
+
const instance: PaginatedFloatingIPv4List = {
|
|
19
|
+
count,
|
|
20
|
+
next,
|
|
21
|
+
previous,
|
|
22
|
+
results,
|
|
23
|
+
};
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# PaginatedFloatingIPv6List
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**count** | **number** | | [default to undefined]
|
|
9
|
+
**next** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**previous** | **string** | | [optional] [default to undefined]
|
|
11
|
+
**results** | [**Array<FloatingIPv6>**](FloatingIPv6.md) | | [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { PaginatedFloatingIPv6List } from '@pidginhost/sdk';
|
|
17
|
+
|
|
18
|
+
const instance: PaginatedFloatingIPv6List = {
|
|
19
|
+
count,
|
|
20
|
+
next,
|
|
21
|
+
previous,
|
|
22
|
+
results,
|
|
23
|
+
};
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# PaginatedInboundRouteList
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**count** | **number** | | [default to undefined]
|
|
9
|
+
**next** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**previous** | **string** | | [optional] [default to undefined]
|
|
11
|
+
**results** | [**Array<InboundRoute>**](InboundRoute.md) | | [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { PaginatedInboundRouteList } from '@pidginhost/sdk';
|
|
17
|
+
|
|
18
|
+
const instance: PaginatedInboundRouteList = {
|
|
19
|
+
count,
|
|
20
|
+
next,
|
|
21
|
+
previous,
|
|
22
|
+
results,
|
|
23
|
+
};
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# PaginatedSandboxAddressList
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**count** | **number** | | [default to undefined]
|
|
9
|
+
**next** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**previous** | **string** | | [optional] [default to undefined]
|
|
11
|
+
**results** | [**Array<SandboxAddress>**](SandboxAddress.md) | | [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { PaginatedSandboxAddressList } from '@pidginhost/sdk';
|
|
17
|
+
|
|
18
|
+
const instance: PaginatedSandboxAddressList = {
|
|
19
|
+
count,
|
|
20
|
+
next,
|
|
21
|
+
previous,
|
|
22
|
+
results,
|
|
23
|
+
};
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# PaginatedSendingDomainList
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**count** | **number** | | [default to undefined]
|
|
9
|
+
**next** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**previous** | **string** | | [optional] [default to undefined]
|
|
11
|
+
**results** | [**Array<SendingDomain>**](SendingDomain.md) | | [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { PaginatedSendingDomainList } from '@pidginhost/sdk';
|
|
17
|
+
|
|
18
|
+
const instance: PaginatedSendingDomainList = {
|
|
19
|
+
count,
|
|
20
|
+
next,
|
|
21
|
+
previous,
|
|
22
|
+
results,
|
|
23
|
+
};
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# PaginatedSmtpCredentialList
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**count** | **number** | | [default to undefined]
|
|
9
|
+
**next** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**previous** | **string** | | [optional] [default to undefined]
|
|
11
|
+
**results** | [**Array<SmtpCredential>**](SmtpCredential.md) | | [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { PaginatedSmtpCredentialList } from '@pidginhost/sdk';
|
|
17
|
+
|
|
18
|
+
const instance: PaginatedSmtpCredentialList = {
|
|
19
|
+
count,
|
|
20
|
+
next,
|
|
21
|
+
previous,
|
|
22
|
+
results,
|
|
23
|
+
};
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# PaginatedSuppressionEntryList
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**count** | **number** | | [default to undefined]
|
|
9
|
+
**next** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**previous** | **string** | | [optional] [default to undefined]
|
|
11
|
+
**results** | [**Array<SuppressionEntry>**](SuppressionEntry.md) | | [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { PaginatedSuppressionEntryList } from '@pidginhost/sdk';
|
|
17
|
+
|
|
18
|
+
const instance: PaginatedSuppressionEntryList = {
|
|
19
|
+
count,
|
|
20
|
+
next,
|
|
21
|
+
previous,
|
|
22
|
+
results,
|
|
23
|
+
};
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -17,6 +17,8 @@ Name | Type | Description | Notes
|
|
|
17
17
|
**features_ready** | **boolean** | | [optional] [readonly] [default to undefined]
|
|
18
18
|
**kubeconfig_valid_until** | **string** | | [optional] [readonly] [default to undefined]
|
|
19
19
|
**ipv4_address** | **string** | | [optional] [readonly] [default to undefined]
|
|
20
|
+
**ipv6_address** | **string** | | [optional] [readonly] [default to undefined]
|
|
21
|
+
**dual_stack** | **string** | | [optional] [readonly] [default to undefined]
|
|
20
22
|
**_protected** | **boolean** | | [optional] [default to undefined]
|
|
21
23
|
**talos_version** | **string** | | [optional] [readonly] [default to undefined]
|
|
22
24
|
**talos_upgrade_available** | **string** | | [optional] [readonly] [default to undefined]
|
|
@@ -43,6 +45,8 @@ const instance: PatchedClusterDetail = {
|
|
|
43
45
|
features_ready,
|
|
44
46
|
kubeconfig_valid_until,
|
|
45
47
|
ipv4_address,
|
|
48
|
+
ipv6_address,
|
|
49
|
+
dual_stack,
|
|
46
50
|
_protected,
|
|
47
51
|
talos_version,
|
|
48
52
|
talos_upgrade_available,
|