pulumiverse-scaleway 1.26.0a1742897201__py3-none-any.whl → 1.27.0a1743490704__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.
- pulumiverse_scaleway/__init__.py +105 -0
- pulumiverse_scaleway/_inputs.py +663 -0
- pulumiverse_scaleway/apple_silicon_server.py +105 -0
- pulumiverse_scaleway/applesilicon/server.py +105 -0
- pulumiverse_scaleway/domain/__init__.py +1 -0
- pulumiverse_scaleway/domain/_inputs.py +2697 -0
- pulumiverse_scaleway/domain/outputs.py +2145 -0
- pulumiverse_scaleway/domain/registration.py +777 -0
- pulumiverse_scaleway/edge_services_backend_stage.py +472 -0
- pulumiverse_scaleway/edge_services_cache_stage.py +490 -0
- pulumiverse_scaleway/edge_services_dns_stage.py +516 -0
- pulumiverse_scaleway/edge_services_head_stage.py +258 -0
- pulumiverse_scaleway/edge_services_pipeline.py +436 -0
- pulumiverse_scaleway/edge_services_plan.py +239 -0
- pulumiverse_scaleway/edge_services_route_stage.py +422 -0
- pulumiverse_scaleway/edge_services_tls_stage.py +546 -0
- pulumiverse_scaleway/edge_services_waf_stage.py +444 -0
- pulumiverse_scaleway/elasticmetal/ip.py +13 -7
- pulumiverse_scaleway/flexible_ip.py +13 -7
- pulumiverse_scaleway/get_lb_frontend.py +12 -1
- pulumiverse_scaleway/get_lb_route.py +12 -1
- pulumiverse_scaleway/get_secret.py +15 -4
- pulumiverse_scaleway/get_vpc_public_gateway.py +34 -1
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +8 -0
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +8 -0
- pulumiverse_scaleway/loadbalancer_backend.py +2 -2
- pulumiverse_scaleway/loadbalancer_frontend.py +47 -0
- pulumiverse_scaleway/loadbalancer_route.py +48 -1
- pulumiverse_scaleway/loadbalancers/backend.py +2 -2
- pulumiverse_scaleway/loadbalancers/frontend.py +47 -0
- pulumiverse_scaleway/loadbalancers/get_frontend.py +12 -1
- pulumiverse_scaleway/loadbalancers/get_route.py +12 -1
- pulumiverse_scaleway/loadbalancers/outputs.py +13 -2
- pulumiverse_scaleway/loadbalancers/route.py +48 -1
- pulumiverse_scaleway/network/__init__.py +1 -0
- pulumiverse_scaleway/network/_inputs.py +194 -0
- pulumiverse_scaleway/network/acl.py +415 -0
- pulumiverse_scaleway/network/gateway_network.py +104 -122
- pulumiverse_scaleway/network/get_public_gateway.py +34 -1
- pulumiverse_scaleway/network/get_public_gateway_dhcp.py +8 -0
- pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +8 -0
- pulumiverse_scaleway/network/outputs.py +139 -0
- pulumiverse_scaleway/network/public_gateway.py +124 -21
- pulumiverse_scaleway/network/public_gateway_dhcp.py +8 -0
- pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +8 -0
- pulumiverse_scaleway/outputs.py +662 -2
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/secret.py +22 -2
- pulumiverse_scaleway/secret_version.py +6 -6
- pulumiverse_scaleway/secrets/_inputs.py +154 -0
- pulumiverse_scaleway/secrets/get_secret.py +15 -4
- pulumiverse_scaleway/secrets/outputs.py +200 -0
- pulumiverse_scaleway/secrets/secret.py +22 -2
- pulumiverse_scaleway/tem/__init__.py +2 -0
- pulumiverse_scaleway/tem/blocked_list.py +442 -0
- pulumiverse_scaleway/tem/domain.py +7 -0
- pulumiverse_scaleway/tem/get_offer_subscription.py +254 -0
- pulumiverse_scaleway/tem_domain.py +7 -0
- pulumiverse_scaleway/vpc_gateway_network.py +104 -122
- pulumiverse_scaleway/vpc_public_gateway.py +124 -21
- pulumiverse_scaleway/vpc_public_gateway_dhcp.py +8 -0
- pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +8 -0
- {pulumiverse_scaleway-1.26.0a1742897201.dist-info → pulumiverse_scaleway-1.27.0a1743490704.dist-info}/METADATA +1 -1
- {pulumiverse_scaleway-1.26.0a1742897201.dist-info → pulumiverse_scaleway-1.27.0a1743490704.dist-info}/RECORD +66 -53
- {pulumiverse_scaleway-1.26.0a1742897201.dist-info → pulumiverse_scaleway-1.27.0a1743490704.dist-info}/WHEEL +1 -1
- {pulumiverse_scaleway-1.26.0a1742897201.dist-info → pulumiverse_scaleway-1.27.0a1743490704.dist-info}/top_level.txt +0 -0
pulumiverse_scaleway/outputs.py
CHANGED
@@ -43,6 +43,14 @@ __all__ = [
|
|
43
43
|
'DomainRecordHttpService',
|
44
44
|
'DomainRecordView',
|
45
45
|
'DomainRecordWeighted',
|
46
|
+
'EdgeServicesBackendStageLbBackendConfig',
|
47
|
+
'EdgeServicesBackendStageLbBackendConfigLbConfig',
|
48
|
+
'EdgeServicesBackendStageS3BackendConfig',
|
49
|
+
'EdgeServicesCacheStagePurgeRequest',
|
50
|
+
'EdgeServicesRouteStageRule',
|
51
|
+
'EdgeServicesRouteStageRuleRuleHttpMatch',
|
52
|
+
'EdgeServicesRouteStageRuleRuleHttpMatchPathFilter',
|
53
|
+
'EdgeServicesTlsStageSecret',
|
46
54
|
'FunctionTriggerNats',
|
47
55
|
'FunctionTriggerSqs',
|
48
56
|
'IamPolicyRule',
|
@@ -109,6 +117,7 @@ __all__ = [
|
|
109
117
|
'RedisClusterPrivateNetwork',
|
110
118
|
'RedisClusterPublicNetwork',
|
111
119
|
'SecretEphemeralPolicy',
|
120
|
+
'SecretVersion',
|
112
121
|
'TemDomainReputation',
|
113
122
|
'VpcGatewayNetworkIpamConfig',
|
114
123
|
'VpcPrivateNetworkIpv4Subnet',
|
@@ -199,6 +208,7 @@ __all__ = [
|
|
199
208
|
'GetRedisClusterPrivateNetworkResult',
|
200
209
|
'GetRedisClusterPublicNetworkResult',
|
201
210
|
'GetSecretEphemeralPolicyResult',
|
211
|
+
'GetSecretVersionResult',
|
202
212
|
'GetTemDomainReputationResult',
|
203
213
|
'GetVpcGatewayNetworkIpamConfigResult',
|
204
214
|
'GetVpcPrivateNetworkIpv4SubnetResult',
|
@@ -2000,6 +2010,447 @@ class DomainRecordWeighted(dict):
|
|
2000
2010
|
return pulumi.get(self, "weight")
|
2001
2011
|
|
2002
2012
|
|
2013
|
+
@pulumi.output_type
|
2014
|
+
class EdgeServicesBackendStageLbBackendConfig(dict):
|
2015
|
+
@staticmethod
|
2016
|
+
def __key_warning(key: str):
|
2017
|
+
suggest = None
|
2018
|
+
if key == "lbConfig":
|
2019
|
+
suggest = "lb_config"
|
2020
|
+
|
2021
|
+
if suggest:
|
2022
|
+
pulumi.log.warn(f"Key '{key}' not found in EdgeServicesBackendStageLbBackendConfig. Access the value via the '{suggest}' property getter instead.")
|
2023
|
+
|
2024
|
+
def __getitem__(self, key: str) -> Any:
|
2025
|
+
EdgeServicesBackendStageLbBackendConfig.__key_warning(key)
|
2026
|
+
return super().__getitem__(key)
|
2027
|
+
|
2028
|
+
def get(self, key: str, default = None) -> Any:
|
2029
|
+
EdgeServicesBackendStageLbBackendConfig.__key_warning(key)
|
2030
|
+
return super().get(key, default)
|
2031
|
+
|
2032
|
+
def __init__(__self__, *,
|
2033
|
+
lb_config: Optional['outputs.EdgeServicesBackendStageLbBackendConfigLbConfig'] = None):
|
2034
|
+
"""
|
2035
|
+
:param 'EdgeServicesBackendStageLbBackendConfigLbConfigArgs' lb_config: The Load Balancer config.
|
2036
|
+
"""
|
2037
|
+
if lb_config is not None:
|
2038
|
+
pulumi.set(__self__, "lb_config", lb_config)
|
2039
|
+
|
2040
|
+
@property
|
2041
|
+
@pulumi.getter(name="lbConfig")
|
2042
|
+
def lb_config(self) -> Optional['outputs.EdgeServicesBackendStageLbBackendConfigLbConfig']:
|
2043
|
+
"""
|
2044
|
+
The Load Balancer config.
|
2045
|
+
"""
|
2046
|
+
return pulumi.get(self, "lb_config")
|
2047
|
+
|
2048
|
+
|
2049
|
+
@pulumi.output_type
|
2050
|
+
class EdgeServicesBackendStageLbBackendConfigLbConfig(dict):
|
2051
|
+
@staticmethod
|
2052
|
+
def __key_warning(key: str):
|
2053
|
+
suggest = None
|
2054
|
+
if key == "domainName":
|
2055
|
+
suggest = "domain_name"
|
2056
|
+
elif key == "frontendId":
|
2057
|
+
suggest = "frontend_id"
|
2058
|
+
elif key == "isSsl":
|
2059
|
+
suggest = "is_ssl"
|
2060
|
+
|
2061
|
+
if suggest:
|
2062
|
+
pulumi.log.warn(f"Key '{key}' not found in EdgeServicesBackendStageLbBackendConfigLbConfig. Access the value via the '{suggest}' property getter instead.")
|
2063
|
+
|
2064
|
+
def __getitem__(self, key: str) -> Any:
|
2065
|
+
EdgeServicesBackendStageLbBackendConfigLbConfig.__key_warning(key)
|
2066
|
+
return super().__getitem__(key)
|
2067
|
+
|
2068
|
+
def get(self, key: str, default = None) -> Any:
|
2069
|
+
EdgeServicesBackendStageLbBackendConfigLbConfig.__key_warning(key)
|
2070
|
+
return super().get(key, default)
|
2071
|
+
|
2072
|
+
def __init__(__self__, *,
|
2073
|
+
domain_name: Optional[str] = None,
|
2074
|
+
frontend_id: Optional[str] = None,
|
2075
|
+
id: Optional[str] = None,
|
2076
|
+
is_ssl: Optional[bool] = None,
|
2077
|
+
zone: Optional[str] = None):
|
2078
|
+
"""
|
2079
|
+
:param str domain_name: The Fully Qualified Domain Name (in the format subdomain.example.com) to use in HTTP requests sent towards your Load Balancer.
|
2080
|
+
:param str frontend_id: The ID of the frontend.
|
2081
|
+
:param str id: The ID of the Load Balancer.
|
2082
|
+
:param bool is_ssl: Defines whether the Load Balancer's frontend handles SSL connections.
|
2083
|
+
:param str zone: `zone`) The zone of the Load Balancer.
|
2084
|
+
"""
|
2085
|
+
if domain_name is not None:
|
2086
|
+
pulumi.set(__self__, "domain_name", domain_name)
|
2087
|
+
if frontend_id is not None:
|
2088
|
+
pulumi.set(__self__, "frontend_id", frontend_id)
|
2089
|
+
if id is not None:
|
2090
|
+
pulumi.set(__self__, "id", id)
|
2091
|
+
if is_ssl is not None:
|
2092
|
+
pulumi.set(__self__, "is_ssl", is_ssl)
|
2093
|
+
if zone is not None:
|
2094
|
+
pulumi.set(__self__, "zone", zone)
|
2095
|
+
|
2096
|
+
@property
|
2097
|
+
@pulumi.getter(name="domainName")
|
2098
|
+
def domain_name(self) -> Optional[str]:
|
2099
|
+
"""
|
2100
|
+
The Fully Qualified Domain Name (in the format subdomain.example.com) to use in HTTP requests sent towards your Load Balancer.
|
2101
|
+
"""
|
2102
|
+
return pulumi.get(self, "domain_name")
|
2103
|
+
|
2104
|
+
@property
|
2105
|
+
@pulumi.getter(name="frontendId")
|
2106
|
+
def frontend_id(self) -> Optional[str]:
|
2107
|
+
"""
|
2108
|
+
The ID of the frontend.
|
2109
|
+
"""
|
2110
|
+
return pulumi.get(self, "frontend_id")
|
2111
|
+
|
2112
|
+
@property
|
2113
|
+
@pulumi.getter
|
2114
|
+
def id(self) -> Optional[str]:
|
2115
|
+
"""
|
2116
|
+
The ID of the Load Balancer.
|
2117
|
+
"""
|
2118
|
+
return pulumi.get(self, "id")
|
2119
|
+
|
2120
|
+
@property
|
2121
|
+
@pulumi.getter(name="isSsl")
|
2122
|
+
def is_ssl(self) -> Optional[bool]:
|
2123
|
+
"""
|
2124
|
+
Defines whether the Load Balancer's frontend handles SSL connections.
|
2125
|
+
"""
|
2126
|
+
return pulumi.get(self, "is_ssl")
|
2127
|
+
|
2128
|
+
@property
|
2129
|
+
@pulumi.getter
|
2130
|
+
def zone(self) -> Optional[str]:
|
2131
|
+
"""
|
2132
|
+
`zone`) The zone of the Load Balancer.
|
2133
|
+
"""
|
2134
|
+
return pulumi.get(self, "zone")
|
2135
|
+
|
2136
|
+
|
2137
|
+
@pulumi.output_type
|
2138
|
+
class EdgeServicesBackendStageS3BackendConfig(dict):
|
2139
|
+
@staticmethod
|
2140
|
+
def __key_warning(key: str):
|
2141
|
+
suggest = None
|
2142
|
+
if key == "bucketName":
|
2143
|
+
suggest = "bucket_name"
|
2144
|
+
elif key == "bucketRegion":
|
2145
|
+
suggest = "bucket_region"
|
2146
|
+
elif key == "isWebsite":
|
2147
|
+
suggest = "is_website"
|
2148
|
+
|
2149
|
+
if suggest:
|
2150
|
+
pulumi.log.warn(f"Key '{key}' not found in EdgeServicesBackendStageS3BackendConfig. Access the value via the '{suggest}' property getter instead.")
|
2151
|
+
|
2152
|
+
def __getitem__(self, key: str) -> Any:
|
2153
|
+
EdgeServicesBackendStageS3BackendConfig.__key_warning(key)
|
2154
|
+
return super().__getitem__(key)
|
2155
|
+
|
2156
|
+
def get(self, key: str, default = None) -> Any:
|
2157
|
+
EdgeServicesBackendStageS3BackendConfig.__key_warning(key)
|
2158
|
+
return super().get(key, default)
|
2159
|
+
|
2160
|
+
def __init__(__self__, *,
|
2161
|
+
bucket_name: Optional[str] = None,
|
2162
|
+
bucket_region: Optional[str] = None,
|
2163
|
+
is_website: Optional[bool] = None):
|
2164
|
+
"""
|
2165
|
+
:param str bucket_name: The name of the Bucket.
|
2166
|
+
:param str bucket_region: The region of the Bucket.
|
2167
|
+
:param bool is_website: Defines whether the bucket website feature is enabled.
|
2168
|
+
"""
|
2169
|
+
if bucket_name is not None:
|
2170
|
+
pulumi.set(__self__, "bucket_name", bucket_name)
|
2171
|
+
if bucket_region is not None:
|
2172
|
+
pulumi.set(__self__, "bucket_region", bucket_region)
|
2173
|
+
if is_website is not None:
|
2174
|
+
pulumi.set(__self__, "is_website", is_website)
|
2175
|
+
|
2176
|
+
@property
|
2177
|
+
@pulumi.getter(name="bucketName")
|
2178
|
+
def bucket_name(self) -> Optional[str]:
|
2179
|
+
"""
|
2180
|
+
The name of the Bucket.
|
2181
|
+
"""
|
2182
|
+
return pulumi.get(self, "bucket_name")
|
2183
|
+
|
2184
|
+
@property
|
2185
|
+
@pulumi.getter(name="bucketRegion")
|
2186
|
+
def bucket_region(self) -> Optional[str]:
|
2187
|
+
"""
|
2188
|
+
The region of the Bucket.
|
2189
|
+
"""
|
2190
|
+
return pulumi.get(self, "bucket_region")
|
2191
|
+
|
2192
|
+
@property
|
2193
|
+
@pulumi.getter(name="isWebsite")
|
2194
|
+
def is_website(self) -> Optional[bool]:
|
2195
|
+
"""
|
2196
|
+
Defines whether the bucket website feature is enabled.
|
2197
|
+
"""
|
2198
|
+
return pulumi.get(self, "is_website")
|
2199
|
+
|
2200
|
+
|
2201
|
+
@pulumi.output_type
|
2202
|
+
class EdgeServicesCacheStagePurgeRequest(dict):
|
2203
|
+
@staticmethod
|
2204
|
+
def __key_warning(key: str):
|
2205
|
+
suggest = None
|
2206
|
+
if key == "pipelineId":
|
2207
|
+
suggest = "pipeline_id"
|
2208
|
+
|
2209
|
+
if suggest:
|
2210
|
+
pulumi.log.warn(f"Key '{key}' not found in EdgeServicesCacheStagePurgeRequest. Access the value via the '{suggest}' property getter instead.")
|
2211
|
+
|
2212
|
+
def __getitem__(self, key: str) -> Any:
|
2213
|
+
EdgeServicesCacheStagePurgeRequest.__key_warning(key)
|
2214
|
+
return super().__getitem__(key)
|
2215
|
+
|
2216
|
+
def get(self, key: str, default = None) -> Any:
|
2217
|
+
EdgeServicesCacheStagePurgeRequest.__key_warning(key)
|
2218
|
+
return super().get(key, default)
|
2219
|
+
|
2220
|
+
def __init__(__self__, *,
|
2221
|
+
all: Optional[bool] = None,
|
2222
|
+
assets: Optional[Sequence[str]] = None,
|
2223
|
+
pipeline_id: Optional[str] = None):
|
2224
|
+
"""
|
2225
|
+
:param bool all: Defines whether to purge all content.
|
2226
|
+
:param Sequence[str] assets: The list of asserts to purge.
|
2227
|
+
:param str pipeline_id: The pipeline ID in which the purge request will be created.
|
2228
|
+
"""
|
2229
|
+
if all is not None:
|
2230
|
+
pulumi.set(__self__, "all", all)
|
2231
|
+
if assets is not None:
|
2232
|
+
pulumi.set(__self__, "assets", assets)
|
2233
|
+
if pipeline_id is not None:
|
2234
|
+
pulumi.set(__self__, "pipeline_id", pipeline_id)
|
2235
|
+
|
2236
|
+
@property
|
2237
|
+
@pulumi.getter
|
2238
|
+
def all(self) -> Optional[bool]:
|
2239
|
+
"""
|
2240
|
+
Defines whether to purge all content.
|
2241
|
+
"""
|
2242
|
+
return pulumi.get(self, "all")
|
2243
|
+
|
2244
|
+
@property
|
2245
|
+
@pulumi.getter
|
2246
|
+
def assets(self) -> Optional[Sequence[str]]:
|
2247
|
+
"""
|
2248
|
+
The list of asserts to purge.
|
2249
|
+
"""
|
2250
|
+
return pulumi.get(self, "assets")
|
2251
|
+
|
2252
|
+
@property
|
2253
|
+
@pulumi.getter(name="pipelineId")
|
2254
|
+
def pipeline_id(self) -> Optional[str]:
|
2255
|
+
"""
|
2256
|
+
The pipeline ID in which the purge request will be created.
|
2257
|
+
"""
|
2258
|
+
return pulumi.get(self, "pipeline_id")
|
2259
|
+
|
2260
|
+
|
2261
|
+
@pulumi.output_type
|
2262
|
+
class EdgeServicesRouteStageRule(dict):
|
2263
|
+
@staticmethod
|
2264
|
+
def __key_warning(key: str):
|
2265
|
+
suggest = None
|
2266
|
+
if key == "backendStageId":
|
2267
|
+
suggest = "backend_stage_id"
|
2268
|
+
elif key == "ruleHttpMatch":
|
2269
|
+
suggest = "rule_http_match"
|
2270
|
+
|
2271
|
+
if suggest:
|
2272
|
+
pulumi.log.warn(f"Key '{key}' not found in EdgeServicesRouteStageRule. Access the value via the '{suggest}' property getter instead.")
|
2273
|
+
|
2274
|
+
def __getitem__(self, key: str) -> Any:
|
2275
|
+
EdgeServicesRouteStageRule.__key_warning(key)
|
2276
|
+
return super().__getitem__(key)
|
2277
|
+
|
2278
|
+
def get(self, key: str, default = None) -> Any:
|
2279
|
+
EdgeServicesRouteStageRule.__key_warning(key)
|
2280
|
+
return super().get(key, default)
|
2281
|
+
|
2282
|
+
def __init__(__self__, *,
|
2283
|
+
backend_stage_id: str,
|
2284
|
+
rule_http_match: Optional['outputs.EdgeServicesRouteStageRuleRuleHttpMatch'] = None):
|
2285
|
+
"""
|
2286
|
+
:param str backend_stage_id: The ID of the backend stage that requests matching the rule should be forwarded to.
|
2287
|
+
:param 'EdgeServicesRouteStageRuleRuleHttpMatchArgs' rule_http_match: The rule condition to be matched. Requests matching the condition defined here will be directly forwarded to the backend specified by the `backend_stage_id` field. Requests that do not match will be checked by the next rule's condition.
|
2288
|
+
"""
|
2289
|
+
pulumi.set(__self__, "backend_stage_id", backend_stage_id)
|
2290
|
+
if rule_http_match is not None:
|
2291
|
+
pulumi.set(__self__, "rule_http_match", rule_http_match)
|
2292
|
+
|
2293
|
+
@property
|
2294
|
+
@pulumi.getter(name="backendStageId")
|
2295
|
+
def backend_stage_id(self) -> str:
|
2296
|
+
"""
|
2297
|
+
The ID of the backend stage that requests matching the rule should be forwarded to.
|
2298
|
+
"""
|
2299
|
+
return pulumi.get(self, "backend_stage_id")
|
2300
|
+
|
2301
|
+
@property
|
2302
|
+
@pulumi.getter(name="ruleHttpMatch")
|
2303
|
+
def rule_http_match(self) -> Optional['outputs.EdgeServicesRouteStageRuleRuleHttpMatch']:
|
2304
|
+
"""
|
2305
|
+
The rule condition to be matched. Requests matching the condition defined here will be directly forwarded to the backend specified by the `backend_stage_id` field. Requests that do not match will be checked by the next rule's condition.
|
2306
|
+
"""
|
2307
|
+
return pulumi.get(self, "rule_http_match")
|
2308
|
+
|
2309
|
+
|
2310
|
+
@pulumi.output_type
|
2311
|
+
class EdgeServicesRouteStageRuleRuleHttpMatch(dict):
|
2312
|
+
@staticmethod
|
2313
|
+
def __key_warning(key: str):
|
2314
|
+
suggest = None
|
2315
|
+
if key == "methodFilters":
|
2316
|
+
suggest = "method_filters"
|
2317
|
+
elif key == "pathFilter":
|
2318
|
+
suggest = "path_filter"
|
2319
|
+
|
2320
|
+
if suggest:
|
2321
|
+
pulumi.log.warn(f"Key '{key}' not found in EdgeServicesRouteStageRuleRuleHttpMatch. Access the value via the '{suggest}' property getter instead.")
|
2322
|
+
|
2323
|
+
def __getitem__(self, key: str) -> Any:
|
2324
|
+
EdgeServicesRouteStageRuleRuleHttpMatch.__key_warning(key)
|
2325
|
+
return super().__getitem__(key)
|
2326
|
+
|
2327
|
+
def get(self, key: str, default = None) -> Any:
|
2328
|
+
EdgeServicesRouteStageRuleRuleHttpMatch.__key_warning(key)
|
2329
|
+
return super().get(key, default)
|
2330
|
+
|
2331
|
+
def __init__(__self__, *,
|
2332
|
+
method_filters: Optional[Sequence[str]] = None,
|
2333
|
+
path_filter: Optional['outputs.EdgeServicesRouteStageRuleRuleHttpMatchPathFilter'] = None):
|
2334
|
+
"""
|
2335
|
+
:param Sequence[str] method_filters: HTTP methods to filter for. A request using any of these methods will be considered to match the rule. Possible values are `get`, `post`, `put`, `patch`, `delete`, `head`, `options`. All methods will match if none is provided.
|
2336
|
+
:param 'EdgeServicesRouteStageRuleRuleHttpMatchPathFilterArgs' path_filter: HTTP URL path to filter for. A request whose path matches the given filter will be considered to match the rule. All paths will match if none is provided.
|
2337
|
+
"""
|
2338
|
+
if method_filters is not None:
|
2339
|
+
pulumi.set(__self__, "method_filters", method_filters)
|
2340
|
+
if path_filter is not None:
|
2341
|
+
pulumi.set(__self__, "path_filter", path_filter)
|
2342
|
+
|
2343
|
+
@property
|
2344
|
+
@pulumi.getter(name="methodFilters")
|
2345
|
+
def method_filters(self) -> Optional[Sequence[str]]:
|
2346
|
+
"""
|
2347
|
+
HTTP methods to filter for. A request using any of these methods will be considered to match the rule. Possible values are `get`, `post`, `put`, `patch`, `delete`, `head`, `options`. All methods will match if none is provided.
|
2348
|
+
"""
|
2349
|
+
return pulumi.get(self, "method_filters")
|
2350
|
+
|
2351
|
+
@property
|
2352
|
+
@pulumi.getter(name="pathFilter")
|
2353
|
+
def path_filter(self) -> Optional['outputs.EdgeServicesRouteStageRuleRuleHttpMatchPathFilter']:
|
2354
|
+
"""
|
2355
|
+
HTTP URL path to filter for. A request whose path matches the given filter will be considered to match the rule. All paths will match if none is provided.
|
2356
|
+
"""
|
2357
|
+
return pulumi.get(self, "path_filter")
|
2358
|
+
|
2359
|
+
|
2360
|
+
@pulumi.output_type
|
2361
|
+
class EdgeServicesRouteStageRuleRuleHttpMatchPathFilter(dict):
|
2362
|
+
@staticmethod
|
2363
|
+
def __key_warning(key: str):
|
2364
|
+
suggest = None
|
2365
|
+
if key == "pathFilterType":
|
2366
|
+
suggest = "path_filter_type"
|
2367
|
+
|
2368
|
+
if suggest:
|
2369
|
+
pulumi.log.warn(f"Key '{key}' not found in EdgeServicesRouteStageRuleRuleHttpMatchPathFilter. Access the value via the '{suggest}' property getter instead.")
|
2370
|
+
|
2371
|
+
def __getitem__(self, key: str) -> Any:
|
2372
|
+
EdgeServicesRouteStageRuleRuleHttpMatchPathFilter.__key_warning(key)
|
2373
|
+
return super().__getitem__(key)
|
2374
|
+
|
2375
|
+
def get(self, key: str, default = None) -> Any:
|
2376
|
+
EdgeServicesRouteStageRuleRuleHttpMatchPathFilter.__key_warning(key)
|
2377
|
+
return super().get(key, default)
|
2378
|
+
|
2379
|
+
def __init__(__self__, *,
|
2380
|
+
path_filter_type: str,
|
2381
|
+
value: str):
|
2382
|
+
"""
|
2383
|
+
:param str path_filter_type: The type of filter to match for the HTTP URL path. For now, all path filters must be written in regex and use the `regex` type.
|
2384
|
+
:param str value: The value to be matched for the HTTP URL path.
|
2385
|
+
"""
|
2386
|
+
pulumi.set(__self__, "path_filter_type", path_filter_type)
|
2387
|
+
pulumi.set(__self__, "value", value)
|
2388
|
+
|
2389
|
+
@property
|
2390
|
+
@pulumi.getter(name="pathFilterType")
|
2391
|
+
def path_filter_type(self) -> str:
|
2392
|
+
"""
|
2393
|
+
The type of filter to match for the HTTP URL path. For now, all path filters must be written in regex and use the `regex` type.
|
2394
|
+
"""
|
2395
|
+
return pulumi.get(self, "path_filter_type")
|
2396
|
+
|
2397
|
+
@property
|
2398
|
+
@pulumi.getter
|
2399
|
+
def value(self) -> str:
|
2400
|
+
"""
|
2401
|
+
The value to be matched for the HTTP URL path.
|
2402
|
+
"""
|
2403
|
+
return pulumi.get(self, "value")
|
2404
|
+
|
2405
|
+
|
2406
|
+
@pulumi.output_type
|
2407
|
+
class EdgeServicesTlsStageSecret(dict):
|
2408
|
+
@staticmethod
|
2409
|
+
def __key_warning(key: str):
|
2410
|
+
suggest = None
|
2411
|
+
if key == "secretId":
|
2412
|
+
suggest = "secret_id"
|
2413
|
+
|
2414
|
+
if suggest:
|
2415
|
+
pulumi.log.warn(f"Key '{key}' not found in EdgeServicesTlsStageSecret. Access the value via the '{suggest}' property getter instead.")
|
2416
|
+
|
2417
|
+
def __getitem__(self, key: str) -> Any:
|
2418
|
+
EdgeServicesTlsStageSecret.__key_warning(key)
|
2419
|
+
return super().__getitem__(key)
|
2420
|
+
|
2421
|
+
def get(self, key: str, default = None) -> Any:
|
2422
|
+
EdgeServicesTlsStageSecret.__key_warning(key)
|
2423
|
+
return super().get(key, default)
|
2424
|
+
|
2425
|
+
def __init__(__self__, *,
|
2426
|
+
region: Optional[str] = None,
|
2427
|
+
secret_id: Optional[str] = None):
|
2428
|
+
"""
|
2429
|
+
:param str region: The region of the secret.
|
2430
|
+
:param str secret_id: The ID of the Secret
|
2431
|
+
"""
|
2432
|
+
if region is not None:
|
2433
|
+
pulumi.set(__self__, "region", region)
|
2434
|
+
if secret_id is not None:
|
2435
|
+
pulumi.set(__self__, "secret_id", secret_id)
|
2436
|
+
|
2437
|
+
@property
|
2438
|
+
@pulumi.getter
|
2439
|
+
def region(self) -> Optional[str]:
|
2440
|
+
"""
|
2441
|
+
The region of the secret.
|
2442
|
+
"""
|
2443
|
+
return pulumi.get(self, "region")
|
2444
|
+
|
2445
|
+
@property
|
2446
|
+
@pulumi.getter(name="secretId")
|
2447
|
+
def secret_id(self) -> Optional[str]:
|
2448
|
+
"""
|
2449
|
+
The ID of the Secret
|
2450
|
+
"""
|
2451
|
+
return pulumi.get(self, "secret_id")
|
2452
|
+
|
2453
|
+
|
2003
2454
|
@pulumi.output_type
|
2004
2455
|
class FunctionTriggerNats(dict):
|
2005
2456
|
@staticmethod
|
@@ -6235,6 +6686,118 @@ class SecretEphemeralPolicy(dict):
|
|
6235
6686
|
return pulumi.get(self, "ttl")
|
6236
6687
|
|
6237
6688
|
|
6689
|
+
@pulumi.output_type
|
6690
|
+
class SecretVersion(dict):
|
6691
|
+
@staticmethod
|
6692
|
+
def __key_warning(key: str):
|
6693
|
+
suggest = None
|
6694
|
+
if key == "createdAt":
|
6695
|
+
suggest = "created_at"
|
6696
|
+
elif key == "secretId":
|
6697
|
+
suggest = "secret_id"
|
6698
|
+
elif key == "updatedAt":
|
6699
|
+
suggest = "updated_at"
|
6700
|
+
|
6701
|
+
if suggest:
|
6702
|
+
pulumi.log.warn(f"Key '{key}' not found in SecretVersion. Access the value via the '{suggest}' property getter instead.")
|
6703
|
+
|
6704
|
+
def __getitem__(self, key: str) -> Any:
|
6705
|
+
SecretVersion.__key_warning(key)
|
6706
|
+
return super().__getitem__(key)
|
6707
|
+
|
6708
|
+
def get(self, key: str, default = None) -> Any:
|
6709
|
+
SecretVersion.__key_warning(key)
|
6710
|
+
return super().get(key, default)
|
6711
|
+
|
6712
|
+
def __init__(__self__, *,
|
6713
|
+
created_at: Optional[str] = None,
|
6714
|
+
description: Optional[str] = None,
|
6715
|
+
latest: Optional[bool] = None,
|
6716
|
+
revision: Optional[str] = None,
|
6717
|
+
secret_id: Optional[str] = None,
|
6718
|
+
status: Optional[str] = None,
|
6719
|
+
updated_at: Optional[str] = None):
|
6720
|
+
"""
|
6721
|
+
:param str created_at: Date and time of the secret's creation (in RFC 3339 format).
|
6722
|
+
:param str description: Description of the secret (e.g. `my-new-description`).
|
6723
|
+
:param bool latest: Returns true if the version is the latest.
|
6724
|
+
:param str revision: The revision of secret version
|
6725
|
+
:param str secret_id: The secret ID associated with this version
|
6726
|
+
:param str status: The status of the secret.
|
6727
|
+
:param str updated_at: Date and time of the secret's last update (in RFC 3339 format).
|
6728
|
+
"""
|
6729
|
+
if created_at is not None:
|
6730
|
+
pulumi.set(__self__, "created_at", created_at)
|
6731
|
+
if description is not None:
|
6732
|
+
pulumi.set(__self__, "description", description)
|
6733
|
+
if latest is not None:
|
6734
|
+
pulumi.set(__self__, "latest", latest)
|
6735
|
+
if revision is not None:
|
6736
|
+
pulumi.set(__self__, "revision", revision)
|
6737
|
+
if secret_id is not None:
|
6738
|
+
pulumi.set(__self__, "secret_id", secret_id)
|
6739
|
+
if status is not None:
|
6740
|
+
pulumi.set(__self__, "status", status)
|
6741
|
+
if updated_at is not None:
|
6742
|
+
pulumi.set(__self__, "updated_at", updated_at)
|
6743
|
+
|
6744
|
+
@property
|
6745
|
+
@pulumi.getter(name="createdAt")
|
6746
|
+
def created_at(self) -> Optional[str]:
|
6747
|
+
"""
|
6748
|
+
Date and time of the secret's creation (in RFC 3339 format).
|
6749
|
+
"""
|
6750
|
+
return pulumi.get(self, "created_at")
|
6751
|
+
|
6752
|
+
@property
|
6753
|
+
@pulumi.getter
|
6754
|
+
def description(self) -> Optional[str]:
|
6755
|
+
"""
|
6756
|
+
Description of the secret (e.g. `my-new-description`).
|
6757
|
+
"""
|
6758
|
+
return pulumi.get(self, "description")
|
6759
|
+
|
6760
|
+
@property
|
6761
|
+
@pulumi.getter
|
6762
|
+
def latest(self) -> Optional[bool]:
|
6763
|
+
"""
|
6764
|
+
Returns true if the version is the latest.
|
6765
|
+
"""
|
6766
|
+
return pulumi.get(self, "latest")
|
6767
|
+
|
6768
|
+
@property
|
6769
|
+
@pulumi.getter
|
6770
|
+
def revision(self) -> Optional[str]:
|
6771
|
+
"""
|
6772
|
+
The revision of secret version
|
6773
|
+
"""
|
6774
|
+
return pulumi.get(self, "revision")
|
6775
|
+
|
6776
|
+
@property
|
6777
|
+
@pulumi.getter(name="secretId")
|
6778
|
+
def secret_id(self) -> Optional[str]:
|
6779
|
+
"""
|
6780
|
+
The secret ID associated with this version
|
6781
|
+
"""
|
6782
|
+
return pulumi.get(self, "secret_id")
|
6783
|
+
|
6784
|
+
@property
|
6785
|
+
@pulumi.getter
|
6786
|
+
def status(self) -> Optional[str]:
|
6787
|
+
"""
|
6788
|
+
The status of the secret.
|
6789
|
+
"""
|
6790
|
+
return pulumi.get(self, "status")
|
6791
|
+
|
6792
|
+
@property
|
6793
|
+
@pulumi.getter(name="updatedAt")
|
6794
|
+
def updated_at(self) -> Optional[str]:
|
6795
|
+
"""
|
6796
|
+
Date and time of the secret's last update (in RFC 3339 format).
|
6797
|
+
"""
|
6798
|
+
return pulumi.get(self, "updated_at")
|
6799
|
+
|
6800
|
+
|
6238
6801
|
@pulumi.output_type
|
6239
6802
|
class TemDomainReputation(dict):
|
6240
6803
|
@staticmethod
|
@@ -10279,7 +10842,7 @@ class GetLbBackendsBackendHealthCheckHttpResult(dict):
|
|
10279
10842
|
:param str host_header: The HTTP host header to use for health check requests.
|
10280
10843
|
:param str method: The HTTP method to use for health check requests.
|
10281
10844
|
:param str sni: The SNI to use for HC requests over SSL.
|
10282
|
-
:param str uri: The
|
10845
|
+
:param str uri: The path of health check requests.
|
10283
10846
|
"""
|
10284
10847
|
pulumi.set(__self__, "code", code)
|
10285
10848
|
pulumi.set(__self__, "host_header", host_header)
|
@@ -10323,7 +10886,7 @@ class GetLbBackendsBackendHealthCheckHttpResult(dict):
|
|
10323
10886
|
@pulumi.getter
|
10324
10887
|
def uri(self) -> str:
|
10325
10888
|
"""
|
10326
|
-
The
|
10889
|
+
The path of health check requests.
|
10327
10890
|
"""
|
10328
10891
|
return pulumi.get(self, "uri")
|
10329
10892
|
|
@@ -10765,6 +11328,7 @@ class GetLbRoutesRouteResult(dict):
|
|
10765
11328
|
id: str,
|
10766
11329
|
match_host_header: str,
|
10767
11330
|
match_sni: str,
|
11331
|
+
match_subdomains: bool,
|
10768
11332
|
update_at: str):
|
10769
11333
|
"""
|
10770
11334
|
:param str backend_id: The backend ID to redirect to
|
@@ -10773,6 +11337,7 @@ class GetLbRoutesRouteResult(dict):
|
|
10773
11337
|
:param str id: The associated route ID.
|
10774
11338
|
:param str match_host_header: Specifies the host of the server to which the request is being sent.
|
10775
11339
|
:param str match_sni: Server Name Indication TLS extension field from an incoming connection made via an SSL/TLS transport layer.
|
11340
|
+
:param bool match_subdomains: If true, all subdomains will match.
|
10776
11341
|
:param str update_at: The date on which the route was last updated (RFC 3339 format).
|
10777
11342
|
"""
|
10778
11343
|
pulumi.set(__self__, "backend_id", backend_id)
|
@@ -10781,6 +11346,7 @@ class GetLbRoutesRouteResult(dict):
|
|
10781
11346
|
pulumi.set(__self__, "id", id)
|
10782
11347
|
pulumi.set(__self__, "match_host_header", match_host_header)
|
10783
11348
|
pulumi.set(__self__, "match_sni", match_sni)
|
11349
|
+
pulumi.set(__self__, "match_subdomains", match_subdomains)
|
10784
11350
|
pulumi.set(__self__, "update_at", update_at)
|
10785
11351
|
|
10786
11352
|
@property
|
@@ -10831,6 +11397,14 @@ class GetLbRoutesRouteResult(dict):
|
|
10831
11397
|
"""
|
10832
11398
|
return pulumi.get(self, "match_sni")
|
10833
11399
|
|
11400
|
+
@property
|
11401
|
+
@pulumi.getter(name="matchSubdomains")
|
11402
|
+
def match_subdomains(self) -> bool:
|
11403
|
+
"""
|
11404
|
+
If true, all subdomains will match.
|
11405
|
+
"""
|
11406
|
+
return pulumi.get(self, "match_subdomains")
|
11407
|
+
|
10834
11408
|
@property
|
10835
11409
|
@pulumi.getter(name="updateAt")
|
10836
11410
|
def update_at(self) -> str:
|
@@ -11775,6 +12349,92 @@ class GetSecretEphemeralPolicyResult(dict):
|
|
11775
12349
|
return pulumi.get(self, "ttl")
|
11776
12350
|
|
11777
12351
|
|
12352
|
+
@pulumi.output_type
|
12353
|
+
class GetSecretVersionResult(dict):
|
12354
|
+
def __init__(__self__, *,
|
12355
|
+
created_at: str,
|
12356
|
+
description: str,
|
12357
|
+
latest: bool,
|
12358
|
+
revision: str,
|
12359
|
+
secret_id: str,
|
12360
|
+
status: str,
|
12361
|
+
updated_at: str):
|
12362
|
+
"""
|
12363
|
+
:param str created_at: Date and time of secret version's creation (RFC 3339 format)
|
12364
|
+
:param str description: Description of the secret version
|
12365
|
+
:param bool latest: Returns true if the version is the latest.
|
12366
|
+
:param str revision: The revision of secret version
|
12367
|
+
:param str secret_id: The ID of the secret.
|
12368
|
+
Only one of `name` and `secret_id` should be specified.
|
12369
|
+
:param str status: Status of the secret version
|
12370
|
+
:param str updated_at: Date and time of secret version's creation (RFC 3339 format)
|
12371
|
+
"""
|
12372
|
+
pulumi.set(__self__, "created_at", created_at)
|
12373
|
+
pulumi.set(__self__, "description", description)
|
12374
|
+
pulumi.set(__self__, "latest", latest)
|
12375
|
+
pulumi.set(__self__, "revision", revision)
|
12376
|
+
pulumi.set(__self__, "secret_id", secret_id)
|
12377
|
+
pulumi.set(__self__, "status", status)
|
12378
|
+
pulumi.set(__self__, "updated_at", updated_at)
|
12379
|
+
|
12380
|
+
@property
|
12381
|
+
@pulumi.getter(name="createdAt")
|
12382
|
+
def created_at(self) -> str:
|
12383
|
+
"""
|
12384
|
+
Date and time of secret version's creation (RFC 3339 format)
|
12385
|
+
"""
|
12386
|
+
return pulumi.get(self, "created_at")
|
12387
|
+
|
12388
|
+
@property
|
12389
|
+
@pulumi.getter
|
12390
|
+
def description(self) -> str:
|
12391
|
+
"""
|
12392
|
+
Description of the secret version
|
12393
|
+
"""
|
12394
|
+
return pulumi.get(self, "description")
|
12395
|
+
|
12396
|
+
@property
|
12397
|
+
@pulumi.getter
|
12398
|
+
def latest(self) -> bool:
|
12399
|
+
"""
|
12400
|
+
Returns true if the version is the latest.
|
12401
|
+
"""
|
12402
|
+
return pulumi.get(self, "latest")
|
12403
|
+
|
12404
|
+
@property
|
12405
|
+
@pulumi.getter
|
12406
|
+
def revision(self) -> str:
|
12407
|
+
"""
|
12408
|
+
The revision of secret version
|
12409
|
+
"""
|
12410
|
+
return pulumi.get(self, "revision")
|
12411
|
+
|
12412
|
+
@property
|
12413
|
+
@pulumi.getter(name="secretId")
|
12414
|
+
def secret_id(self) -> str:
|
12415
|
+
"""
|
12416
|
+
The ID of the secret.
|
12417
|
+
Only one of `name` and `secret_id` should be specified.
|
12418
|
+
"""
|
12419
|
+
return pulumi.get(self, "secret_id")
|
12420
|
+
|
12421
|
+
@property
|
12422
|
+
@pulumi.getter
|
12423
|
+
def status(self) -> str:
|
12424
|
+
"""
|
12425
|
+
Status of the secret version
|
12426
|
+
"""
|
12427
|
+
return pulumi.get(self, "status")
|
12428
|
+
|
12429
|
+
@property
|
12430
|
+
@pulumi.getter(name="updatedAt")
|
12431
|
+
def updated_at(self) -> str:
|
12432
|
+
"""
|
12433
|
+
Date and time of secret version's creation (RFC 3339 format)
|
12434
|
+
"""
|
12435
|
+
return pulumi.get(self, "updated_at")
|
12436
|
+
|
12437
|
+
|
11778
12438
|
@pulumi.output_type
|
11779
12439
|
class GetTemDomainReputationResult(dict):
|
11780
12440
|
def __init__(__self__, *,
|