@pulumi/awsx 1.0.0-alpha.1653295421 → 1.0.0-alpha.1653333417
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as aws from "@pulumi/aws";
|
|
2
2
|
import * as pulumi from "@pulumi/pulumi";
|
|
3
|
-
import * as awslambda from "aws-lambda";
|
|
3
|
+
import type * as awslambda from "aws-lambda";
|
|
4
4
|
import * as cognitoAuthorizer from "./cognitoAuthorizer";
|
|
5
5
|
import * as lambdaAuthorizer from "./lambdaAuthorizer";
|
|
6
6
|
import * as reqvalidation from "./requestValidator";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as aws from "@pulumi/aws";
|
|
2
2
|
import * as pulumi from "@pulumi/pulumi";
|
|
3
|
-
import * as awslambda from "aws-lambda";
|
|
3
|
+
import type * as awslambda from "aws-lambda";
|
|
4
4
|
export declare type AuthorizerEvent = awslambda.CustomAuthorizerEvent;
|
|
5
5
|
export declare type AuthorizerResponse = awslambda.CustomAuthorizerResult;
|
|
6
6
|
export declare type AuthResponseContext = awslambda.AuthResponseContext;
|
|
@@ -1,3 +1,27 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
-
import {
|
|
2
|
+
import { SubnetArgs } from "./subnet";
|
|
3
|
+
import { VpcSubnetArgs, VpcSubnetType } from "./vpc";
|
|
3
4
|
export declare function create(resource: pulumi.Resource | undefined, vpcName: string, vpcCidr: string, ipv6CidrBlock: pulumi.Output<string> | undefined, availabilityZones: AvailabilityZoneDescription[], numberOfNatGateways: number, assignGeneratedIpv6CidrBlock: pulumi.Input<boolean>, subnetArgsArray: VpcSubnetArgs[]): VpcTopologyDescription;
|
|
5
|
+
export interface VpcTopologyDescription {
|
|
6
|
+
subnets: SubnetDescription[];
|
|
7
|
+
natGateways: NatGatewayDescription[];
|
|
8
|
+
natRoutes: NatRouteDescription[];
|
|
9
|
+
}
|
|
10
|
+
export interface SubnetDescription {
|
|
11
|
+
type: VpcSubnetType;
|
|
12
|
+
subnetName: string;
|
|
13
|
+
args: SubnetArgs;
|
|
14
|
+
ignoreChanges?: string[];
|
|
15
|
+
}
|
|
16
|
+
export interface NatGatewayDescription {
|
|
17
|
+
name: string;
|
|
18
|
+
/** index of the public subnet that this nat gateway should live in. */
|
|
19
|
+
publicSubnet: string;
|
|
20
|
+
}
|
|
21
|
+
export interface NatRouteDescription {
|
|
22
|
+
name: string;
|
|
23
|
+
/** The name of the private subnet that is getting the route */
|
|
24
|
+
privateSubnet: string;
|
|
25
|
+
/** The name of the nat gateway this private subnet is getting a route to. */
|
|
26
|
+
natGateway: string;
|
|
27
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/awsx",
|
|
3
|
-
"version": "v1.0.0-alpha.
|
|
3
|
+
"version": "v1.0.0-alpha.1653333417+879d9fe6",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"pulumi",
|
|
6
6
|
"aws",
|
|
@@ -11,16 +11,16 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource awsx v1.0.0-alpha.
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource awsx v1.0.0-alpha.1653333417+879d9fe6"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/aws": "^5.3.0",
|
|
18
18
|
"@pulumi/docker": "^3.0.0",
|
|
19
19
|
"@pulumi/pulumi": "^3.0.0",
|
|
20
|
+
"@types/aws-lambda": "^8.10.23",
|
|
20
21
|
"mime": "^2.0.0"
|
|
21
22
|
},
|
|
22
23
|
"devDependencies": {
|
|
23
|
-
"@types/aws-lambda": "^8.10.23",
|
|
24
24
|
"@types/mime": "^2.0.0",
|
|
25
25
|
"@types/node": "^17.0.21",
|
|
26
26
|
"typescript": "^4.6.2"
|
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/awsx",
|
|
3
|
-
"version": "v1.0.0-alpha.
|
|
3
|
+
"version": "v1.0.0-alpha.1653333417+879d9fe6",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"pulumi",
|
|
6
6
|
"aws",
|
|
@@ -11,16 +11,16 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource awsx v1.0.0-alpha.
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource awsx v1.0.0-alpha.1653333417+879d9fe6"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/aws": "^5.3.0",
|
|
18
18
|
"@pulumi/docker": "^3.0.0",
|
|
19
19
|
"@pulumi/pulumi": "^3.0.0",
|
|
20
|
+
"@types/aws-lambda": "^8.10.23",
|
|
20
21
|
"mime": "^2.0.0"
|
|
21
22
|
},
|
|
22
23
|
"devDependencies": {
|
|
23
|
-
"@types/aws-lambda": "^8.10.23",
|
|
24
24
|
"@types/mime": "^2.0.0",
|
|
25
25
|
"@types/node": "^17.0.21",
|
|
26
26
|
"typescript": "^4.6.2"
|