@distilled.cloud/aws 0.10.1 → 0.10.2
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/lib/services/ec2.d.ts +1 -1
- package/package.json +2 -2
- package/src/services/ec2.ts +9 -9
package/lib/services/ec2.d.ts
CHANGED
|
@@ -6548,7 +6548,7 @@ export interface CreateVpcEndpointRequest {
|
|
|
6548
6548
|
ServiceRegion?: string;
|
|
6549
6549
|
}
|
|
6550
6550
|
export declare const CreateVpcEndpointRequest: S.Schema<CreateVpcEndpointRequest>;
|
|
6551
|
-
export type State = "
|
|
6551
|
+
export type State = "pendingAcceptance" | "pending" | "available" | "deleting" | "deleted" | "rejected" | "failed" | "expired" | "partial" | (string & {});
|
|
6552
6552
|
export declare const State: S.String;
|
|
6553
6553
|
export interface SecurityGroupIdentifier {
|
|
6554
6554
|
GroupId?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@distilled.cloud/aws",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.2",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/alchemy-run/distilled",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"@aws-crypto/util": "^5.2.0",
|
|
83
83
|
"@aws-sdk/credential-providers": "^3.994.0",
|
|
84
84
|
"@aws-sdk/types": "^3.973.1",
|
|
85
|
-
"@distilled.cloud/core": "0.10.
|
|
85
|
+
"@distilled.cloud/core": "0.10.2",
|
|
86
86
|
"@smithy/shared-ini-file-loader": "^4.4.3",
|
|
87
87
|
"@smithy/types": "^4.12.0",
|
|
88
88
|
"@smithy/util-base64": "^4.3.0",
|
package/src/services/ec2.ts
CHANGED
|
@@ -24387,15 +24387,15 @@ export const CreateVpcEndpointRequest = /*@__PURE__*/ /*#__PURE__*/ S.suspend(
|
|
|
24387
24387
|
identifier: "CreateVpcEndpointRequest",
|
|
24388
24388
|
}) as any as S.Schema<CreateVpcEndpointRequest>;
|
|
24389
24389
|
export type State =
|
|
24390
|
-
| "
|
|
24391
|
-
| "
|
|
24392
|
-
| "
|
|
24393
|
-
| "
|
|
24394
|
-
| "
|
|
24395
|
-
| "
|
|
24396
|
-
| "
|
|
24397
|
-
| "
|
|
24398
|
-
| "
|
|
24390
|
+
| "pendingAcceptance"
|
|
24391
|
+
| "pending"
|
|
24392
|
+
| "available"
|
|
24393
|
+
| "deleting"
|
|
24394
|
+
| "deleted"
|
|
24395
|
+
| "rejected"
|
|
24396
|
+
| "failed"
|
|
24397
|
+
| "expired"
|
|
24398
|
+
| "partial"
|
|
24399
24399
|
| (string & {});
|
|
24400
24400
|
export const State = /*@__PURE__*/ /*#__PURE__*/ S.String;
|
|
24401
24401
|
export interface SecurityGroupIdentifier {
|