@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.
Files changed (54) hide show
  1. package/.openapi-generator/FILES +39 -0
  2. package/CHANGELOG.md +13 -0
  3. package/README.md +115 -2
  4. package/api.ts +9092 -3385
  5. package/dist/api.d.ts +2573 -62
  6. package/dist/api.js +8148 -3042
  7. package/dist/esm/api.d.ts +2573 -62
  8. package/dist/esm/api.js +8138 -3036
  9. package/docs/ApiCredential.md +32 -0
  10. package/docs/Bucket.md +40 -0
  11. package/docs/CloudApi.md +1312 -134
  12. package/docs/ClusterAdd.md +2 -0
  13. package/docs/ClusterDetail.md +4 -0
  14. package/docs/DnsSourceEnum.md +13 -0
  15. package/docs/DomainAdd.md +28 -0
  16. package/docs/EmailApi.md +2828 -0
  17. package/docs/EmailService.md +44 -0
  18. package/docs/FloatingIPAuthorization.md +27 -0
  19. package/docs/FloatingIPAuthorizeRequest.md +20 -0
  20. package/docs/FloatingIPv4.md +32 -0
  21. package/docs/FloatingIPv4AuthorizeResponse.md +20 -0
  22. package/docs/FloatingIPv4Create.md +20 -0
  23. package/docs/FloatingIPv4UnauthorizeResponse.md +20 -0
  24. package/docs/FloatingIPv6.md +32 -0
  25. package/docs/FloatingIPv6AuthorizeResponse.md +20 -0
  26. package/docs/FloatingIPv6Create.md +20 -0
  27. package/docs/FloatingIPv6UnauthorizeResponse.md +20 -0
  28. package/docs/InboundRoute.md +34 -0
  29. package/docs/KubeVersionEnum.md +4 -4
  30. package/docs/ModeEnum.md +11 -0
  31. package/docs/PaginatedApiCredentialList.md +26 -0
  32. package/docs/PaginatedEmailServiceList.md +26 -0
  33. package/docs/PaginatedFloatingIPAuthorizationList.md +26 -0
  34. package/docs/PaginatedFloatingIPv4List.md +26 -0
  35. package/docs/PaginatedFloatingIPv6List.md +26 -0
  36. package/docs/PaginatedInboundRouteList.md +26 -0
  37. package/docs/PaginatedSandboxAddressList.md +26 -0
  38. package/docs/PaginatedSendingDomainList.md +26 -0
  39. package/docs/PaginatedSmtpCredentialList.md +26 -0
  40. package/docs/PaginatedSuppressionEntryList.md +26 -0
  41. package/docs/PatchedClusterDetail.md +4 -0
  42. package/docs/PatchedEmailService.md +44 -0
  43. package/docs/PatchedInboundRoute.md +34 -0
  44. package/docs/PatchedSubscribe.md +20 -0
  45. package/docs/ReasonEnum.md +15 -0
  46. package/docs/SandboxAddress.md +26 -0
  47. package/docs/SendingDomain.md +42 -0
  48. package/docs/SendingDomainStatusEnum.md +17 -0
  49. package/docs/ServerAdd.md +2 -0
  50. package/docs/SmtpCredential.md +30 -0
  51. package/docs/Subscribe.md +20 -0
  52. package/docs/SuppressionEntry.md +28 -0
  53. package/docs/TierEnum.md +13 -0
  54. package/package.json +1 -1
@@ -12,6 +12,7 @@ Name | Type | Description | Notes
12
12
  **kube_version** | [**KubeVersionEnum**](KubeVersionEnum.md) | | [optional] [default to undefined]
13
13
  **features** | [**Array<FeaturesEnum>**](FeaturesEnum.md) | | [optional] [default to undefined]
14
14
  **enable_gateway_api** | **boolean** | | [optional] [default to undefined]
15
+ **dual_stack** | **boolean** | Enable IPv6 dual-stack for pods, services, and the cluster private network. Available only when the platform has K8S_DUAL_STACK_ENABLED. Cannot be changed after provisioning. | [optional] [default to false]
15
16
  **generation** | **string** | | [optional] [default to undefined]
16
17
 
17
18
  ## Example
@@ -27,6 +28,7 @@ const instance: ClusterAdd = {
27
28
  kube_version,
28
29
  features,
29
30
  enable_gateway_api,
31
+ dual_stack,
30
32
  generation,
31
33
  };
32
34
  ```
@@ -17,6 +17,8 @@ Name | Type | Description | Notes
17
17
  **features_ready** | **boolean** | | [readonly] [default to undefined]
18
18
  **kubeconfig_valid_until** | **string** | | [readonly] [default to undefined]
19
19
  **ipv4_address** | **string** | | [readonly] [default to undefined]
20
+ **ipv6_address** | **string** | | [readonly] [default to undefined]
21
+ **dual_stack** | **string** | | [readonly] [default to undefined]
20
22
  **_protected** | **boolean** | | [optional] [default to undefined]
21
23
  **talos_version** | **string** | | [readonly] [default to undefined]
22
24
  **talos_upgrade_available** | **string** | | [readonly] [default to undefined]
@@ -43,6 +45,8 @@ const instance: ClusterDetail = {
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,
@@ -0,0 +1,13 @@
1
+ # DnsSourceEnum
2
+
3
+ * `manual` - Manual * `freedns_internal` - FreeDNS (registered) * `freedns_external` - FreeDNS (external)
4
+
5
+ ## Enum
6
+
7
+ * `Manual` (value: `'manual'`)
8
+
9
+ * `FreednsInternal` (value: `'freedns_internal'`)
10
+
11
+ * `FreednsExternal` (value: `'freedns_external'`)
12
+
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)
@@ -0,0 +1,28 @@
1
+ # DomainAdd
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **name** | **string** | | [default to undefined]
9
+ **dns_source** | [**DnsSourceEnum**](DnsSourceEnum.md) | | [default to undefined]
10
+ **managed_domain** | **number** | | [optional] [default to undefined]
11
+ **managed_external_domain** | **number** | | [optional] [default to undefined]
12
+ **use_inbound** | **boolean** | | [optional] [default to false]
13
+
14
+ ## Example
15
+
16
+ ```typescript
17
+ import { DomainAdd } from '@pidginhost/sdk';
18
+
19
+ const instance: DomainAdd = {
20
+ name,
21
+ dns_source,
22
+ managed_domain,
23
+ managed_external_domain,
24
+ use_inbound,
25
+ };
26
+ ```
27
+
28
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)