pulumi-aws-apigateway 2.7.0a1745817955__py3-none-any.whl → 2.7.0a1746037096__py3-none-any.whl
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.
Potentially problematic release.
This version of pulumi-aws-apigateway might be problematic. Click here for more details.
- pulumi_aws_apigateway/_enums.py +7 -1
- pulumi_aws_apigateway/provider.py +1 -3
- pulumi_aws_apigateway/pulumi-plugin.json +1 -1
- pulumi_aws_apigateway/rest_api.py +1 -3
- {pulumi_aws_apigateway-2.7.0a1745817955.dist-info → pulumi_aws_apigateway-2.7.0a1746037096.dist-info}/METADATA +2 -2
- pulumi_aws_apigateway-2.7.0a1746037096.dist-info/RECORD +12 -0
- {pulumi_aws_apigateway-2.7.0a1745817955.dist-info → pulumi_aws_apigateway-2.7.0a1746037096.dist-info}/WHEEL +1 -1
- pulumi_aws_apigateway-2.7.0a1745817955.dist-info/RECORD +0 -12
- {pulumi_aws_apigateway-2.7.0a1745817955.dist-info → pulumi_aws_apigateway-2.7.0a1746037096.dist-info}/top_level.txt +0 -0
pulumi_aws_apigateway/_enums.py
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
5
|
import builtins
|
|
6
|
-
import
|
|
6
|
+
import pulumi
|
|
7
7
|
from enum import Enum
|
|
8
8
|
|
|
9
9
|
__all__ = [
|
|
@@ -16,22 +16,26 @@ __all__ = [
|
|
|
16
16
|
]
|
|
17
17
|
|
|
18
18
|
|
|
19
|
+
@pulumi.type_token("aws-apigateway:index:APIKeySource")
|
|
19
20
|
class APIKeySource(builtins.str, Enum):
|
|
20
21
|
HEADER = "HEADER"
|
|
21
22
|
AUTHORIZER = "AUTHORIZER"
|
|
22
23
|
|
|
23
24
|
|
|
25
|
+
@pulumi.type_token("aws-apigateway:index:IntegrationConnectionType")
|
|
24
26
|
class IntegrationConnectionType(builtins.str, Enum):
|
|
25
27
|
INTERNET = "INTERNET"
|
|
26
28
|
VP_C_LINK = "VPC_LINK"
|
|
27
29
|
|
|
28
30
|
|
|
31
|
+
@pulumi.type_token("aws-apigateway:index:IntegrationPassthroughBehavior")
|
|
29
32
|
class IntegrationPassthroughBehavior(builtins.str, Enum):
|
|
30
33
|
WHEN_NO_MATCH = "when_no_match"
|
|
31
34
|
WHEN_NO_TEMPLATES = "when_no_templates"
|
|
32
35
|
NEVER = "never"
|
|
33
36
|
|
|
34
37
|
|
|
38
|
+
@pulumi.type_token("aws-apigateway:index:IntegrationType")
|
|
35
39
|
class IntegrationType(builtins.str, Enum):
|
|
36
40
|
AWS = "aws"
|
|
37
41
|
AWS_PROXY = "aws_proxy"
|
|
@@ -40,6 +44,7 @@ class IntegrationType(builtins.str, Enum):
|
|
|
40
44
|
MOCK = "mock"
|
|
41
45
|
|
|
42
46
|
|
|
47
|
+
@pulumi.type_token("aws-apigateway:index:Method")
|
|
43
48
|
class Method(builtins.str, Enum):
|
|
44
49
|
ANY = "ANY"
|
|
45
50
|
GET = "GET"
|
|
@@ -51,6 +56,7 @@ class Method(builtins.str, Enum):
|
|
|
51
56
|
HEAD = "HEAD"
|
|
52
57
|
|
|
53
58
|
|
|
59
|
+
@pulumi.type_token("aws-apigateway:index:RequestValidator")
|
|
54
60
|
class RequestValidator(builtins.str, Enum):
|
|
55
61
|
ALL = "ALL"
|
|
56
62
|
PARAM_S_ONLY = "PARAMS_ONLY"
|
|
@@ -26,10 +26,8 @@ class ProviderArgs:
|
|
|
26
26
|
pass
|
|
27
27
|
|
|
28
28
|
|
|
29
|
+
@pulumi.type_token("pulumi:providers:aws-apigateway")
|
|
29
30
|
class Provider(pulumi.ProviderResource):
|
|
30
|
-
|
|
31
|
-
pulumi_type = "pulumi:providers:aws-apigateway"
|
|
32
|
-
|
|
33
31
|
@overload
|
|
34
32
|
def __init__(__self__,
|
|
35
33
|
resource_name: str,
|
|
@@ -236,10 +236,8 @@ class RestAPIArgs:
|
|
|
236
236
|
pulumi.set(self, "tags", value)
|
|
237
237
|
|
|
238
238
|
|
|
239
|
+
@pulumi.type_token("aws-apigateway:index:RestAPI")
|
|
239
240
|
class RestAPI(pulumi.ComponentResource):
|
|
240
|
-
|
|
241
|
-
pulumi_type = "aws-apigateway:index:RestAPI"
|
|
242
|
-
|
|
243
241
|
@overload
|
|
244
242
|
def __init__(__self__,
|
|
245
243
|
resource_name: str,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pulumi_aws_apigateway
|
|
3
|
-
Version: 2.7.
|
|
3
|
+
Version: 2.7.0a1746037096
|
|
4
4
|
Summary: Pulumi Amazon Web Services (AWS) API Gateway Components.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Repository, https://github.com/pulumi/pulumi-aws-apigateway
|
|
@@ -8,7 +8,7 @@ Keywords: pulumi,aws,apigateway,category/cloud,kind/component
|
|
|
8
8
|
Requires-Python: >=3.9
|
|
9
9
|
Description-Content-Type: text/markdown
|
|
10
10
|
Requires-Dist: parver>=0.2.1
|
|
11
|
-
Requires-Dist: pulumi<4.0.0,>=3.
|
|
11
|
+
Requires-Dist: pulumi<4.0.0,>=3.165.0
|
|
12
12
|
Requires-Dist: pulumi-aws<7.0.0,>=6.59.1
|
|
13
13
|
Requires-Dist: semver>=2.8.1
|
|
14
14
|
Requires-Dist: typing-extensions<5,>=4.11; python_version < "3.11"
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
pulumi_aws_apigateway/__init__.py,sha256=de7yPkrlX_cJc9hPR7esIlwEAt2bce80bGkoN3j7nQg,734
|
|
2
|
+
pulumi_aws_apigateway/_enums.py,sha256=Cby_ZZc4rcSDyicrwc_OB0psvxWYlY2tt5t5-Z-pUvM,1581
|
|
3
|
+
pulumi_aws_apigateway/_inputs.py,sha256=kqPMB3ituvhTaVHQb9oZ3JYdTNNu_CfOKbPnKo3fHSw,51562
|
|
4
|
+
pulumi_aws_apigateway/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
5
|
+
pulumi_aws_apigateway/provider.py,sha256=chs_RU_2X7E2wh9aKnpXjwl5vOeEbBEf6_ZvLHRNbys,3000
|
|
6
|
+
pulumi_aws_apigateway/pulumi-plugin.json,sha256=hnr0Gxa0F262nQ_NNDU9uFqqLaIga0_qbmgKoQKz8dI,90
|
|
7
|
+
pulumi_aws_apigateway/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
+
pulumi_aws_apigateway/rest_api.py,sha256=2g0fXy240zuKbQBP_DNNLUVPqikkXLPv4FdNPVm-9AA,22102
|
|
9
|
+
pulumi_aws_apigateway-2.7.0a1746037096.dist-info/METADATA,sha256=3eAz_XGjRF7bVAClgbxFvxnmQ_ADFuCRpvSFJFY96N4,3010
|
|
10
|
+
pulumi_aws_apigateway-2.7.0a1746037096.dist-info/WHEEL,sha256=wXxTzcEDnjrTwFYjLPcsW_7_XihufBwmpiBeiXNBGEA,91
|
|
11
|
+
pulumi_aws_apigateway-2.7.0a1746037096.dist-info/top_level.txt,sha256=YY2wCK-Qy789n9y-8rwjASV5533Pg_6X5fH0hoDSif4,22
|
|
12
|
+
pulumi_aws_apigateway-2.7.0a1746037096.dist-info/RECORD,,
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
pulumi_aws_apigateway/__init__.py,sha256=de7yPkrlX_cJc9hPR7esIlwEAt2bce80bGkoN3j7nQg,734
|
|
2
|
-
pulumi_aws_apigateway/_enums.py,sha256=PZA08fO4xszbd8K-xGd-U3pzXwGDrJdUUH-RL_c02Oo,1215
|
|
3
|
-
pulumi_aws_apigateway/_inputs.py,sha256=kqPMB3ituvhTaVHQb9oZ3JYdTNNu_CfOKbPnKo3fHSw,51562
|
|
4
|
-
pulumi_aws_apigateway/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
5
|
-
pulumi_aws_apigateway/provider.py,sha256=Yk-l2JOEofZU-wO8ukd-smKgW024wolA2Eaz2o80f5A,3000
|
|
6
|
-
pulumi_aws_apigateway/pulumi-plugin.json,sha256=uvX8dVxSh_Gis1ArpGokPsqjTVRZfu9e_QezQHlj8cI,90
|
|
7
|
-
pulumi_aws_apigateway/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
-
pulumi_aws_apigateway/rest_api.py,sha256=DlOEDN3-pwbQo4_veQJ21FBof2dQg2UOkdR70t_awbA,22102
|
|
9
|
-
pulumi_aws_apigateway-2.7.0a1745817955.dist-info/METADATA,sha256=vEW7NJ7Uwj3NNc8weVpJk4DAKHLp_LqzRa0NbBm4TX8,3010
|
|
10
|
-
pulumi_aws_apigateway-2.7.0a1745817955.dist-info/WHEEL,sha256=ck4Vq1_RXyvS4Jt6SI0Vz6fyVs4GWg7AINwpsaGEgPE,91
|
|
11
|
-
pulumi_aws_apigateway-2.7.0a1745817955.dist-info/top_level.txt,sha256=YY2wCK-Qy789n9y-8rwjASV5533Pg_6X5fH0hoDSif4,22
|
|
12
|
-
pulumi_aws_apigateway-2.7.0a1745817955.dist-info/RECORD,,
|
|
File without changes
|