pulumi-gcp 8.19.0a1739290509__py3-none-any.whl → 8.19.1a1739444689__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.
Files changed (76) hide show
  1. pulumi_gcp/__init__.py +80 -0
  2. pulumi_gcp/_utilities.py +8 -4
  3. pulumi_gcp/accesscontextmanager/_inputs.py +288 -78
  4. pulumi_gcp/accesscontextmanager/outputs.py +186 -54
  5. pulumi_gcp/appengine/_inputs.py +3 -0
  6. pulumi_gcp/appengine/outputs.py +2 -0
  7. pulumi_gcp/beyondcorp/__init__.py +5 -0
  8. pulumi_gcp/beyondcorp/_inputs.py +189 -0
  9. pulumi_gcp/beyondcorp/application.py +604 -0
  10. pulumi_gcp/beyondcorp/application_iam_binding.py +1049 -0
  11. pulumi_gcp/beyondcorp/application_iam_member.py +1049 -0
  12. pulumi_gcp/beyondcorp/application_iam_policy.py +868 -0
  13. pulumi_gcp/beyondcorp/get_application_iam_policy.py +174 -0
  14. pulumi_gcp/beyondcorp/outputs.py +111 -0
  15. pulumi_gcp/bigqueryanalyticshub/__init__.py +1 -0
  16. pulumi_gcp/bigqueryanalyticshub/_inputs.py +318 -0
  17. pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +808 -0
  18. pulumi_gcp/bigqueryanalyticshub/outputs.py +263 -0
  19. pulumi_gcp/certificateauthority/_inputs.py +54 -0
  20. pulumi_gcp/certificateauthority/authority.py +149 -3
  21. pulumi_gcp/certificateauthority/get_authority.py +15 -4
  22. pulumi_gcp/certificateauthority/outputs.py +81 -0
  23. pulumi_gcp/cloudrunv2/_inputs.py +112 -0
  24. pulumi_gcp/cloudrunv2/outputs.py +144 -1
  25. pulumi_gcp/cloudrunv2/service.py +2 -0
  26. pulumi_gcp/colab/__init__.py +2 -0
  27. pulumi_gcp/colab/_inputs.py +655 -0
  28. pulumi_gcp/colab/notebook_execution.py +1259 -0
  29. pulumi_gcp/colab/outputs.py +512 -0
  30. pulumi_gcp/colab/runtime.py +266 -2
  31. pulumi_gcp/colab/runtime_template.py +79 -3
  32. pulumi_gcp/colab/schedule.py +1318 -0
  33. pulumi_gcp/compute/__init__.py +1 -0
  34. pulumi_gcp/compute/_inputs.py +204 -0
  35. pulumi_gcp/compute/firewall_policy.py +54 -43
  36. pulumi_gcp/compute/forwarding_rule.py +103 -0
  37. pulumi_gcp/compute/get_forwarding_rule.py +12 -1
  38. pulumi_gcp/compute/interconnect_attachment.py +12 -0
  39. pulumi_gcp/compute/network_firewall_policy_packet_mirroring_rule.py +1011 -0
  40. pulumi_gcp/compute/outputs.py +187 -0
  41. pulumi_gcp/compute/public_advertised_prefix.py +35 -7
  42. pulumi_gcp/compute/public_delegated_prefix.py +171 -7
  43. pulumi_gcp/compute/region_resize_request.py +21 -22
  44. pulumi_gcp/compute/resize_request.py +22 -23
  45. pulumi_gcp/compute/subnetwork.py +14 -7
  46. pulumi_gcp/container/_inputs.py +54 -1
  47. pulumi_gcp/container/outputs.py +79 -1
  48. pulumi_gcp/datastream/connection_profile.py +120 -46
  49. pulumi_gcp/discoveryengine/chat_engine.py +7 -7
  50. pulumi_gcp/filestore/_inputs.py +222 -0
  51. pulumi_gcp/filestore/get_instance.py +23 -1
  52. pulumi_gcp/filestore/instance.py +86 -0
  53. pulumi_gcp/filestore/outputs.py +282 -0
  54. pulumi_gcp/gemini/__init__.py +2 -0
  55. pulumi_gcp/gemini/logging_setting.py +671 -0
  56. pulumi_gcp/gemini/release_channel_setting.py +639 -0
  57. pulumi_gcp/memorystore/_inputs.py +296 -0
  58. pulumi_gcp/memorystore/instance.py +32 -28
  59. pulumi_gcp/memorystore/outputs.py +224 -0
  60. pulumi_gcp/monitoring/_inputs.py +12 -9
  61. pulumi_gcp/monitoring/outputs.py +8 -6
  62. pulumi_gcp/networkservices/_inputs.py +89 -0
  63. pulumi_gcp/networkservices/outputs.py +75 -0
  64. pulumi_gcp/parametermanager/__init__.py +2 -0
  65. pulumi_gcp/parametermanager/get_parameter_version_render.py +199 -0
  66. pulumi_gcp/parametermanager/get_regional_parameter_version_render.py +220 -0
  67. pulumi_gcp/privilegedaccessmanager/entitlement.py +14 -0
  68. pulumi_gcp/pulumi-plugin.json +1 -1
  69. pulumi_gcp/securesourcemanager/branch_rule.py +4 -0
  70. pulumi_gcp/securesourcemanager/repository.py +4 -0
  71. pulumi_gcp/storage/bucket_object.py +8 -0
  72. pulumi_gcp/workbench/instance.py +70 -2
  73. {pulumi_gcp-8.19.0a1739290509.dist-info → pulumi_gcp-8.19.1a1739444689.dist-info}/METADATA +1 -1
  74. {pulumi_gcp-8.19.0a1739290509.dist-info → pulumi_gcp-8.19.1a1739444689.dist-info}/RECORD +76 -63
  75. {pulumi_gcp-8.19.0a1739290509.dist-info → pulumi_gcp-8.19.1a1739444689.dist-info}/WHEEL +0 -0
  76. {pulumi_gcp-8.19.0a1739290509.dist-info → pulumi_gcp-8.19.1a1739444689.dist-info}/top_level.txt +0 -0
@@ -18,6 +18,9 @@ from . import outputs
18
18
  __all__ = [
19
19
  'InstanceDesiredPscAutoConnection',
20
20
  'InstanceDiscoveryEndpoint',
21
+ 'InstanceEndpoint',
22
+ 'InstanceEndpointConnection',
23
+ 'InstanceEndpointConnectionPscAutoConnection',
21
24
  'InstanceNodeConfig',
22
25
  'InstancePersistenceConfig',
23
26
  'InstancePersistenceConfigAofConfig',
@@ -131,6 +134,227 @@ class InstanceDiscoveryEndpoint(dict):
131
134
  return pulumi.get(self, "port")
132
135
 
133
136
 
137
+ @pulumi.output_type
138
+ class InstanceEndpoint(dict):
139
+ def __init__(__self__, *,
140
+ connections: Optional[Sequence['outputs.InstanceEndpointConnection']] = None):
141
+ """
142
+ :param Sequence['InstanceEndpointConnectionArgs'] connections: A group of PSC connections. They are created in the same VPC network, one for each service attachment in the cluster.
143
+ Structure is documented below.
144
+ """
145
+ if connections is not None:
146
+ pulumi.set(__self__, "connections", connections)
147
+
148
+ @property
149
+ @pulumi.getter
150
+ def connections(self) -> Optional[Sequence['outputs.InstanceEndpointConnection']]:
151
+ """
152
+ A group of PSC connections. They are created in the same VPC network, one for each service attachment in the cluster.
153
+ Structure is documented below.
154
+ """
155
+ return pulumi.get(self, "connections")
156
+
157
+
158
+ @pulumi.output_type
159
+ class InstanceEndpointConnection(dict):
160
+ @staticmethod
161
+ def __key_warning(key: str):
162
+ suggest = None
163
+ if key == "pscAutoConnection":
164
+ suggest = "psc_auto_connection"
165
+
166
+ if suggest:
167
+ pulumi.log.warn(f"Key '{key}' not found in InstanceEndpointConnection. Access the value via the '{suggest}' property getter instead.")
168
+
169
+ def __getitem__(self, key: str) -> Any:
170
+ InstanceEndpointConnection.__key_warning(key)
171
+ return super().__getitem__(key)
172
+
173
+ def get(self, key: str, default = None) -> Any:
174
+ InstanceEndpointConnection.__key_warning(key)
175
+ return super().get(key, default)
176
+
177
+ def __init__(__self__, *,
178
+ psc_auto_connection: Optional['outputs.InstanceEndpointConnectionPscAutoConnection'] = None):
179
+ """
180
+ :param 'InstanceEndpointConnectionPscAutoConnectionArgs' psc_auto_connection: Detailed information of a PSC connection that is created through service connectivity automation.
181
+ Structure is documented below.
182
+ """
183
+ if psc_auto_connection is not None:
184
+ pulumi.set(__self__, "psc_auto_connection", psc_auto_connection)
185
+
186
+ @property
187
+ @pulumi.getter(name="pscAutoConnection")
188
+ def psc_auto_connection(self) -> Optional['outputs.InstanceEndpointConnectionPscAutoConnection']:
189
+ """
190
+ Detailed information of a PSC connection that is created through service connectivity automation.
191
+ Structure is documented below.
192
+ """
193
+ return pulumi.get(self, "psc_auto_connection")
194
+
195
+
196
+ @pulumi.output_type
197
+ class InstanceEndpointConnectionPscAutoConnection(dict):
198
+ @staticmethod
199
+ def __key_warning(key: str):
200
+ suggest = None
201
+ if key == "connectionType":
202
+ suggest = "connection_type"
203
+ elif key == "forwardingRule":
204
+ suggest = "forwarding_rule"
205
+ elif key == "ipAddress":
206
+ suggest = "ip_address"
207
+ elif key == "projectId":
208
+ suggest = "project_id"
209
+ elif key == "pscConnectionId":
210
+ suggest = "psc_connection_id"
211
+ elif key == "serviceAttachment":
212
+ suggest = "service_attachment"
213
+
214
+ if suggest:
215
+ pulumi.log.warn(f"Key '{key}' not found in InstanceEndpointConnectionPscAutoConnection. Access the value via the '{suggest}' property getter instead.")
216
+
217
+ def __getitem__(self, key: str) -> Any:
218
+ InstanceEndpointConnectionPscAutoConnection.__key_warning(key)
219
+ return super().__getitem__(key)
220
+
221
+ def get(self, key: str, default = None) -> Any:
222
+ InstanceEndpointConnectionPscAutoConnection.__key_warning(key)
223
+ return super().get(key, default)
224
+
225
+ def __init__(__self__, *,
226
+ connection_type: Optional[str] = None,
227
+ forwarding_rule: Optional[str] = None,
228
+ ip_address: Optional[str] = None,
229
+ network: Optional[str] = None,
230
+ port: Optional[int] = None,
231
+ project_id: Optional[str] = None,
232
+ psc_connection_id: Optional[str] = None,
233
+ service_attachment: Optional[str] = None):
234
+ """
235
+ :param str connection_type: (Output)
236
+ Output Only. Type of a PSC Connection.
237
+ Possible values:
238
+ CONNECTION_TYPE_DISCOVERY
239
+ CONNECTION_TYPE_PRIMARY
240
+ CONNECTION_TYPE_READER
241
+ :param str forwarding_rule: (Output)
242
+ Output only. The URI of the consumer side forwarding rule.
243
+ Format:
244
+ projects/{project}/regions/{region}/forwardingRules/{forwarding_rule}
245
+ :param str ip_address: (Output)
246
+ Output only. The IP allocated on the consumer network for the PSC forwarding rule.
247
+ :param str network: (Output)
248
+ Output only. The consumer network where the IP address resides, in the form of
249
+ projects/{project_id}/global/networks/{network_id}.
250
+ :param int port: (Output)
251
+ Output only. Ports of the exposed endpoint.
252
+ :param str project_id: (Output)
253
+ Output only. The consumer project_id where the forwarding rule is created from.
254
+ :param str psc_connection_id: (Output)
255
+ Output only. The PSC connection id of the forwarding rule connected to the
256
+ service attachment.
257
+ :param str service_attachment: (Output)
258
+ Output only. The service attachment which is the target of the PSC connection, in the form of projects/{project-id}/regions/{region}/serviceAttachments/{service-attachment-id}.
259
+ """
260
+ if connection_type is not None:
261
+ pulumi.set(__self__, "connection_type", connection_type)
262
+ if forwarding_rule is not None:
263
+ pulumi.set(__self__, "forwarding_rule", forwarding_rule)
264
+ if ip_address is not None:
265
+ pulumi.set(__self__, "ip_address", ip_address)
266
+ if network is not None:
267
+ pulumi.set(__self__, "network", network)
268
+ if port is not None:
269
+ pulumi.set(__self__, "port", port)
270
+ if project_id is not None:
271
+ pulumi.set(__self__, "project_id", project_id)
272
+ if psc_connection_id is not None:
273
+ pulumi.set(__self__, "psc_connection_id", psc_connection_id)
274
+ if service_attachment is not None:
275
+ pulumi.set(__self__, "service_attachment", service_attachment)
276
+
277
+ @property
278
+ @pulumi.getter(name="connectionType")
279
+ def connection_type(self) -> Optional[str]:
280
+ """
281
+ (Output)
282
+ Output Only. Type of a PSC Connection.
283
+ Possible values:
284
+ CONNECTION_TYPE_DISCOVERY
285
+ CONNECTION_TYPE_PRIMARY
286
+ CONNECTION_TYPE_READER
287
+ """
288
+ return pulumi.get(self, "connection_type")
289
+
290
+ @property
291
+ @pulumi.getter(name="forwardingRule")
292
+ def forwarding_rule(self) -> Optional[str]:
293
+ """
294
+ (Output)
295
+ Output only. The URI of the consumer side forwarding rule.
296
+ Format:
297
+ projects/{project}/regions/{region}/forwardingRules/{forwarding_rule}
298
+ """
299
+ return pulumi.get(self, "forwarding_rule")
300
+
301
+ @property
302
+ @pulumi.getter(name="ipAddress")
303
+ def ip_address(self) -> Optional[str]:
304
+ """
305
+ (Output)
306
+ Output only. The IP allocated on the consumer network for the PSC forwarding rule.
307
+ """
308
+ return pulumi.get(self, "ip_address")
309
+
310
+ @property
311
+ @pulumi.getter
312
+ def network(self) -> Optional[str]:
313
+ """
314
+ (Output)
315
+ Output only. The consumer network where the IP address resides, in the form of
316
+ projects/{project_id}/global/networks/{network_id}.
317
+ """
318
+ return pulumi.get(self, "network")
319
+
320
+ @property
321
+ @pulumi.getter
322
+ def port(self) -> Optional[int]:
323
+ """
324
+ (Output)
325
+ Output only. Ports of the exposed endpoint.
326
+ """
327
+ return pulumi.get(self, "port")
328
+
329
+ @property
330
+ @pulumi.getter(name="projectId")
331
+ def project_id(self) -> Optional[str]:
332
+ """
333
+ (Output)
334
+ Output only. The consumer project_id where the forwarding rule is created from.
335
+ """
336
+ return pulumi.get(self, "project_id")
337
+
338
+ @property
339
+ @pulumi.getter(name="pscConnectionId")
340
+ def psc_connection_id(self) -> Optional[str]:
341
+ """
342
+ (Output)
343
+ Output only. The PSC connection id of the forwarding rule connected to the
344
+ service attachment.
345
+ """
346
+ return pulumi.get(self, "psc_connection_id")
347
+
348
+ @property
349
+ @pulumi.getter(name="serviceAttachment")
350
+ def service_attachment(self) -> Optional[str]:
351
+ """
352
+ (Output)
353
+ Output only. The service attachment which is the target of the PSC connection, in the form of projects/{project-id}/regions/{region}/serviceAttachments/{service-attachment-id}.
354
+ """
355
+ return pulumi.get(self, "service_attachment")
356
+
357
+
134
358
  @pulumi.output_type
135
359
  class InstanceNodeConfig(dict):
136
360
  @staticmethod
@@ -1441,9 +1441,10 @@ if not MYPY:
1441
1441
  Labels to add to or overwrite in the PromQL query result. Label names
1442
1442
  must be valid.
1443
1443
  Label values can be templatized by using variables. The only available
1444
- variable names are the names of the labels in the PromQL result, including
1445
- "__name__" and "value". "labels" may be empty. This field is intended to be
1446
- used for organizing and identifying the AlertPolicy
1444
+ variable names are the names of the labels in the PromQL result,
1445
+ although label names beginning with \\_\\_ (two "\\_") are reserved for
1446
+ internal use. "labels" may be empty. This field is intended to be used
1447
+ for organizing and identifying the AlertPolicy.
1447
1448
  """
1448
1449
  rule_group: NotRequired[pulumi.Input[str]]
1449
1450
  """
@@ -1493,9 +1494,10 @@ class AlertPolicyConditionConditionPrometheusQueryLanguageArgs:
1493
1494
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels to add to or overwrite in the PromQL query result. Label names
1494
1495
  must be valid.
1495
1496
  Label values can be templatized by using variables. The only available
1496
- variable names are the names of the labels in the PromQL result, including
1497
- "__name__" and "value". "labels" may be empty. This field is intended to be
1498
- used for organizing and identifying the AlertPolicy
1497
+ variable names are the names of the labels in the PromQL result,
1498
+ although label names beginning with \\_\\_ (two "\\_") are reserved for
1499
+ internal use. "labels" may be empty. This field is intended to be used
1500
+ for organizing and identifying the AlertPolicy.
1499
1501
  :param pulumi.Input[str] rule_group: The rule group name of this alert in the corresponding Prometheus
1500
1502
  configuration file.
1501
1503
  Some external tools may require this field to be populated correctly
@@ -1599,9 +1601,10 @@ class AlertPolicyConditionConditionPrometheusQueryLanguageArgs:
1599
1601
  Labels to add to or overwrite in the PromQL query result. Label names
1600
1602
  must be valid.
1601
1603
  Label values can be templatized by using variables. The only available
1602
- variable names are the names of the labels in the PromQL result, including
1603
- "__name__" and "value". "labels" may be empty. This field is intended to be
1604
- used for organizing and identifying the AlertPolicy
1604
+ variable names are the names of the labels in the PromQL result,
1605
+ although label names beginning with \\_\\_ (two "\\_") are reserved for
1606
+ internal use. "labels" may be empty. This field is intended to be used
1607
+ for organizing and identifying the AlertPolicy.
1605
1608
  """
1606
1609
  return pulumi.get(self, "labels")
1607
1610
 
@@ -1055,9 +1055,10 @@ class AlertPolicyConditionConditionPrometheusQueryLanguage(dict):
1055
1055
  :param Mapping[str, str] labels: Labels to add to or overwrite in the PromQL query result. Label names
1056
1056
  must be valid.
1057
1057
  Label values can be templatized by using variables. The only available
1058
- variable names are the names of the labels in the PromQL result, including
1059
- "__name__" and "value". "labels" may be empty. This field is intended to be
1060
- used for organizing and identifying the AlertPolicy
1058
+ variable names are the names of the labels in the PromQL result,
1059
+ although label names beginning with \\_\\_ (two "\\_") are reserved for
1060
+ internal use. "labels" may be empty. This field is intended to be used
1061
+ for organizing and identifying the AlertPolicy.
1061
1062
  :param str rule_group: The rule group name of this alert in the corresponding Prometheus
1062
1063
  configuration file.
1063
1064
  Some external tools may require this field to be populated correctly
@@ -1141,9 +1142,10 @@ class AlertPolicyConditionConditionPrometheusQueryLanguage(dict):
1141
1142
  Labels to add to or overwrite in the PromQL query result. Label names
1142
1143
  must be valid.
1143
1144
  Label values can be templatized by using variables. The only available
1144
- variable names are the names of the labels in the PromQL result, including
1145
- "__name__" and "value". "labels" may be empty. This field is intended to be
1146
- used for organizing and identifying the AlertPolicy
1145
+ variable names are the names of the labels in the PromQL result,
1146
+ although label names beginning with \\_\\_ (two "\\_") are reserved for
1147
+ internal use. "labels" may be empty. This field is intended to be used
1148
+ for organizing and identifying the AlertPolicy.
1147
1149
  """
1148
1150
  return pulumi.get(self, "labels")
1149
1151
 
@@ -73,6 +73,8 @@ __all__ = [
73
73
  'EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionCorsPolicyArgsDict',
74
74
  'EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionUrlRewriteArgs',
75
75
  'EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionUrlRewriteArgsDict',
76
+ 'EdgeCacheServiceRoutingPathMatcherRouteRuleRouteMethodsArgs',
77
+ 'EdgeCacheServiceRoutingPathMatcherRouteRuleRouteMethodsArgsDict',
76
78
  'EdgeCacheServiceRoutingPathMatcherRouteRuleUrlRedirectArgs',
77
79
  'EdgeCacheServiceRoutingPathMatcherRouteRuleUrlRedirectArgsDict',
78
80
  'EndpointPolicyEndpointMatcherArgs',
@@ -1097,6 +1099,12 @@ if not MYPY:
1097
1099
  In response to a matching path, the routeAction performs advanced routing actions like URL rewrites, header transformations, etc. prior to forwarding the request to the selected origin.
1098
1100
  Structure is documented below.
1099
1101
  """
1102
+ route_methods: NotRequired[pulumi.Input['EdgeCacheServiceRoutingPathMatcherRouteRuleRouteMethodsArgsDict']]
1103
+ """
1104
+ Allow overriding the set of methods that are allowed for this route.
1105
+ When not set, Media CDN allows only "GET", "HEAD", and "OPTIONS".
1106
+ Structure is documented below.
1107
+ """
1100
1108
  url_redirect: NotRequired[pulumi.Input['EdgeCacheServiceRoutingPathMatcherRouteRuleUrlRedirectArgsDict']]
1101
1109
  """
1102
1110
  The URL redirect configuration for requests that match this route.
@@ -1114,6 +1122,7 @@ class EdgeCacheServiceRoutingPathMatcherRouteRuleArgs:
1114
1122
  header_action: Optional[pulumi.Input['EdgeCacheServiceRoutingPathMatcherRouteRuleHeaderActionArgs']] = None,
1115
1123
  origin: Optional[pulumi.Input[str]] = None,
1116
1124
  route_action: Optional[pulumi.Input['EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionArgs']] = None,
1125
+ route_methods: Optional[pulumi.Input['EdgeCacheServiceRoutingPathMatcherRouteRuleRouteMethodsArgs']] = None,
1117
1126
  url_redirect: Optional[pulumi.Input['EdgeCacheServiceRoutingPathMatcherRouteRuleUrlRedirectArgs']] = None):
1118
1127
  """
1119
1128
  :param pulumi.Input[Sequence[pulumi.Input['EdgeCacheServiceRoutingPathMatcherRouteRuleMatchRuleArgs']]] match_rules: The list of criteria for matching attributes of a request to this routeRule. This list has OR semantics: the request matches this routeRule when any of the matchRules are satisfied. However predicates
@@ -1130,6 +1139,9 @@ class EdgeCacheServiceRoutingPathMatcherRouteRuleArgs:
1130
1139
  Only one of origin or urlRedirect can be set.
1131
1140
  :param pulumi.Input['EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionArgs'] route_action: In response to a matching path, the routeAction performs advanced routing actions like URL rewrites, header transformations, etc. prior to forwarding the request to the selected origin.
1132
1141
  Structure is documented below.
1142
+ :param pulumi.Input['EdgeCacheServiceRoutingPathMatcherRouteRuleRouteMethodsArgs'] route_methods: Allow overriding the set of methods that are allowed for this route.
1143
+ When not set, Media CDN allows only "GET", "HEAD", and "OPTIONS".
1144
+ Structure is documented below.
1133
1145
  :param pulumi.Input['EdgeCacheServiceRoutingPathMatcherRouteRuleUrlRedirectArgs'] url_redirect: The URL redirect configuration for requests that match this route.
1134
1146
  Structure is documented below.
1135
1147
  """
@@ -1143,6 +1155,8 @@ class EdgeCacheServiceRoutingPathMatcherRouteRuleArgs:
1143
1155
  pulumi.set(__self__, "origin", origin)
1144
1156
  if route_action is not None:
1145
1157
  pulumi.set(__self__, "route_action", route_action)
1158
+ if route_methods is not None:
1159
+ pulumi.set(__self__, "route_methods", route_methods)
1146
1160
  if url_redirect is not None:
1147
1161
  pulumi.set(__self__, "url_redirect", url_redirect)
1148
1162
 
@@ -1226,6 +1240,20 @@ class EdgeCacheServiceRoutingPathMatcherRouteRuleArgs:
1226
1240
  def route_action(self, value: Optional[pulumi.Input['EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionArgs']]):
1227
1241
  pulumi.set(self, "route_action", value)
1228
1242
 
1243
+ @property
1244
+ @pulumi.getter(name="routeMethods")
1245
+ def route_methods(self) -> Optional[pulumi.Input['EdgeCacheServiceRoutingPathMatcherRouteRuleRouteMethodsArgs']]:
1246
+ """
1247
+ Allow overriding the set of methods that are allowed for this route.
1248
+ When not set, Media CDN allows only "GET", "HEAD", and "OPTIONS".
1249
+ Structure is documented below.
1250
+ """
1251
+ return pulumi.get(self, "route_methods")
1252
+
1253
+ @route_methods.setter
1254
+ def route_methods(self, value: Optional[pulumi.Input['EdgeCacheServiceRoutingPathMatcherRouteRuleRouteMethodsArgs']]):
1255
+ pulumi.set(self, "route_methods", value)
1256
+
1229
1257
  @property
1230
1258
  @pulumi.getter(name="urlRedirect")
1231
1259
  def url_redirect(self) -> Optional[pulumi.Input['EdgeCacheServiceRoutingPathMatcherRouteRuleUrlRedirectArgs']]:
@@ -1923,6 +1951,12 @@ if not MYPY:
1923
1951
  The policy to use for defining caching and signed request behaviour for requests that match this route.
1924
1952
  Structure is documented below.
1925
1953
  """
1954
+ compression_mode: NotRequired[pulumi.Input[str]]
1955
+ """
1956
+ Setting the compression mode to automatic enables dynamic compression for every eligible response.
1957
+ When dynamic compression is enabled, it is recommended to also set a cache policy to maximize efficiency.
1958
+ Possible values are: `DISABLED`, `AUTOMATIC`.
1959
+ """
1926
1960
  cors_policy: NotRequired[pulumi.Input['EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionCorsPolicyArgsDict']]
1927
1961
  """
1928
1962
  CORSPolicy defines Cross-Origin-Resource-Sharing configuration, including which CORS response headers will be set.
@@ -1940,11 +1974,15 @@ elif False:
1940
1974
  class EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionArgs:
1941
1975
  def __init__(__self__, *,
1942
1976
  cdn_policy: Optional[pulumi.Input['EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionCdnPolicyArgs']] = None,
1977
+ compression_mode: Optional[pulumi.Input[str]] = None,
1943
1978
  cors_policy: Optional[pulumi.Input['EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionCorsPolicyArgs']] = None,
1944
1979
  url_rewrite: Optional[pulumi.Input['EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionUrlRewriteArgs']] = None):
1945
1980
  """
1946
1981
  :param pulumi.Input['EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionCdnPolicyArgs'] cdn_policy: The policy to use for defining caching and signed request behaviour for requests that match this route.
1947
1982
  Structure is documented below.
1983
+ :param pulumi.Input[str] compression_mode: Setting the compression mode to automatic enables dynamic compression for every eligible response.
1984
+ When dynamic compression is enabled, it is recommended to also set a cache policy to maximize efficiency.
1985
+ Possible values are: `DISABLED`, `AUTOMATIC`.
1948
1986
  :param pulumi.Input['EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionCorsPolicyArgs'] cors_policy: CORSPolicy defines Cross-Origin-Resource-Sharing configuration, including which CORS response headers will be set.
1949
1987
  Structure is documented below.
1950
1988
  :param pulumi.Input['EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionUrlRewriteArgs'] url_rewrite: The URL rewrite configuration for requests that match this route.
@@ -1952,6 +1990,8 @@ class EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionArgs:
1952
1990
  """
1953
1991
  if cdn_policy is not None:
1954
1992
  pulumi.set(__self__, "cdn_policy", cdn_policy)
1993
+ if compression_mode is not None:
1994
+ pulumi.set(__self__, "compression_mode", compression_mode)
1955
1995
  if cors_policy is not None:
1956
1996
  pulumi.set(__self__, "cors_policy", cors_policy)
1957
1997
  if url_rewrite is not None:
@@ -1970,6 +2010,20 @@ class EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionArgs:
1970
2010
  def cdn_policy(self, value: Optional[pulumi.Input['EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionCdnPolicyArgs']]):
1971
2011
  pulumi.set(self, "cdn_policy", value)
1972
2012
 
2013
+ @property
2014
+ @pulumi.getter(name="compressionMode")
2015
+ def compression_mode(self) -> Optional[pulumi.Input[str]]:
2016
+ """
2017
+ Setting the compression mode to automatic enables dynamic compression for every eligible response.
2018
+ When dynamic compression is enabled, it is recommended to also set a cache policy to maximize efficiency.
2019
+ Possible values are: `DISABLED`, `AUTOMATIC`.
2020
+ """
2021
+ return pulumi.get(self, "compression_mode")
2022
+
2023
+ @compression_mode.setter
2024
+ def compression_mode(self, value: Optional[pulumi.Input[str]]):
2025
+ pulumi.set(self, "compression_mode", value)
2026
+
1973
2027
  @property
1974
2028
  @pulumi.getter(name="corsPolicy")
1975
2029
  def cors_policy(self) -> Optional[pulumi.Input['EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionCorsPolicyArgs']]:
@@ -3081,6 +3135,41 @@ class EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionUrlRewriteArgs:
3081
3135
  pulumi.set(self, "path_template_rewrite", value)
3082
3136
 
3083
3137
 
3138
+ if not MYPY:
3139
+ class EdgeCacheServiceRoutingPathMatcherRouteRuleRouteMethodsArgsDict(TypedDict):
3140
+ allowed_methods: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
3141
+ """
3142
+ The non-empty set of HTTP methods that are allowed for this route.
3143
+ Any combination of "GET", "HEAD", "OPTIONS", "PUT", "POST", "DELETE", and "PATCH".
3144
+ """
3145
+ elif False:
3146
+ EdgeCacheServiceRoutingPathMatcherRouteRuleRouteMethodsArgsDict: TypeAlias = Mapping[str, Any]
3147
+
3148
+ @pulumi.input_type
3149
+ class EdgeCacheServiceRoutingPathMatcherRouteRuleRouteMethodsArgs:
3150
+ def __init__(__self__, *,
3151
+ allowed_methods: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
3152
+ """
3153
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_methods: The non-empty set of HTTP methods that are allowed for this route.
3154
+ Any combination of "GET", "HEAD", "OPTIONS", "PUT", "POST", "DELETE", and "PATCH".
3155
+ """
3156
+ if allowed_methods is not None:
3157
+ pulumi.set(__self__, "allowed_methods", allowed_methods)
3158
+
3159
+ @property
3160
+ @pulumi.getter(name="allowedMethods")
3161
+ def allowed_methods(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
3162
+ """
3163
+ The non-empty set of HTTP methods that are allowed for this route.
3164
+ Any combination of "GET", "HEAD", "OPTIONS", "PUT", "POST", "DELETE", and "PATCH".
3165
+ """
3166
+ return pulumi.get(self, "allowed_methods")
3167
+
3168
+ @allowed_methods.setter
3169
+ def allowed_methods(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
3170
+ pulumi.set(self, "allowed_methods", value)
3171
+
3172
+
3084
3173
  if not MYPY:
3085
3174
  class EdgeCacheServiceRoutingPathMatcherRouteRuleUrlRedirectArgsDict(TypedDict):
3086
3175
  host_redirect: NotRequired[pulumi.Input[str]]
@@ -45,6 +45,7 @@ __all__ = [
45
45
  'EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionCdnPolicySignedTokenOptions',
46
46
  'EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionCorsPolicy',
47
47
  'EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionUrlRewrite',
48
+ 'EdgeCacheServiceRoutingPathMatcherRouteRuleRouteMethods',
48
49
  'EdgeCacheServiceRoutingPathMatcherRouteRuleUrlRedirect',
49
50
  'EndpointPolicyEndpointMatcher',
50
51
  'EndpointPolicyEndpointMatcherMetadataLabelMatcher',
@@ -863,6 +864,8 @@ class EdgeCacheServiceRoutingPathMatcherRouteRule(dict):
863
864
  suggest = "header_action"
864
865
  elif key == "routeAction":
865
866
  suggest = "route_action"
867
+ elif key == "routeMethods":
868
+ suggest = "route_methods"
866
869
  elif key == "urlRedirect":
867
870
  suggest = "url_redirect"
868
871
 
@@ -884,6 +887,7 @@ class EdgeCacheServiceRoutingPathMatcherRouteRule(dict):
884
887
  header_action: Optional['outputs.EdgeCacheServiceRoutingPathMatcherRouteRuleHeaderAction'] = None,
885
888
  origin: Optional[str] = None,
886
889
  route_action: Optional['outputs.EdgeCacheServiceRoutingPathMatcherRouteRuleRouteAction'] = None,
890
+ route_methods: Optional['outputs.EdgeCacheServiceRoutingPathMatcherRouteRuleRouteMethods'] = None,
887
891
  url_redirect: Optional['outputs.EdgeCacheServiceRoutingPathMatcherRouteRuleUrlRedirect'] = None):
888
892
  """
889
893
  :param Sequence['EdgeCacheServiceRoutingPathMatcherRouteRuleMatchRuleArgs'] match_rules: The list of criteria for matching attributes of a request to this routeRule. This list has OR semantics: the request matches this routeRule when any of the matchRules are satisfied. However predicates
@@ -900,6 +904,9 @@ class EdgeCacheServiceRoutingPathMatcherRouteRule(dict):
900
904
  Only one of origin or urlRedirect can be set.
901
905
  :param 'EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionArgs' route_action: In response to a matching path, the routeAction performs advanced routing actions like URL rewrites, header transformations, etc. prior to forwarding the request to the selected origin.
902
906
  Structure is documented below.
907
+ :param 'EdgeCacheServiceRoutingPathMatcherRouteRuleRouteMethodsArgs' route_methods: Allow overriding the set of methods that are allowed for this route.
908
+ When not set, Media CDN allows only "GET", "HEAD", and "OPTIONS".
909
+ Structure is documented below.
903
910
  :param 'EdgeCacheServiceRoutingPathMatcherRouteRuleUrlRedirectArgs' url_redirect: The URL redirect configuration for requests that match this route.
904
911
  Structure is documented below.
905
912
  """
@@ -913,6 +920,8 @@ class EdgeCacheServiceRoutingPathMatcherRouteRule(dict):
913
920
  pulumi.set(__self__, "origin", origin)
914
921
  if route_action is not None:
915
922
  pulumi.set(__self__, "route_action", route_action)
923
+ if route_methods is not None:
924
+ pulumi.set(__self__, "route_methods", route_methods)
916
925
  if url_redirect is not None:
917
926
  pulumi.set(__self__, "url_redirect", url_redirect)
918
927
 
@@ -972,6 +981,16 @@ class EdgeCacheServiceRoutingPathMatcherRouteRule(dict):
972
981
  """
973
982
  return pulumi.get(self, "route_action")
974
983
 
984
+ @property
985
+ @pulumi.getter(name="routeMethods")
986
+ def route_methods(self) -> Optional['outputs.EdgeCacheServiceRoutingPathMatcherRouteRuleRouteMethods']:
987
+ """
988
+ Allow overriding the set of methods that are allowed for this route.
989
+ When not set, Media CDN allows only "GET", "HEAD", and "OPTIONS".
990
+ Structure is documented below.
991
+ """
992
+ return pulumi.get(self, "route_methods")
993
+
975
994
  @property
976
995
  @pulumi.getter(name="urlRedirect")
977
996
  def url_redirect(self) -> Optional['outputs.EdgeCacheServiceRoutingPathMatcherRouteRuleUrlRedirect']:
@@ -1561,6 +1580,8 @@ class EdgeCacheServiceRoutingPathMatcherRouteRuleRouteAction(dict):
1561
1580
  suggest = None
1562
1581
  if key == "cdnPolicy":
1563
1582
  suggest = "cdn_policy"
1583
+ elif key == "compressionMode":
1584
+ suggest = "compression_mode"
1564
1585
  elif key == "corsPolicy":
1565
1586
  suggest = "cors_policy"
1566
1587
  elif key == "urlRewrite":
@@ -1579,11 +1600,15 @@ class EdgeCacheServiceRoutingPathMatcherRouteRuleRouteAction(dict):
1579
1600
 
1580
1601
  def __init__(__self__, *,
1581
1602
  cdn_policy: Optional['outputs.EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionCdnPolicy'] = None,
1603
+ compression_mode: Optional[str] = None,
1582
1604
  cors_policy: Optional['outputs.EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionCorsPolicy'] = None,
1583
1605
  url_rewrite: Optional['outputs.EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionUrlRewrite'] = None):
1584
1606
  """
1585
1607
  :param 'EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionCdnPolicyArgs' cdn_policy: The policy to use for defining caching and signed request behaviour for requests that match this route.
1586
1608
  Structure is documented below.
1609
+ :param str compression_mode: Setting the compression mode to automatic enables dynamic compression for every eligible response.
1610
+ When dynamic compression is enabled, it is recommended to also set a cache policy to maximize efficiency.
1611
+ Possible values are: `DISABLED`, `AUTOMATIC`.
1587
1612
  :param 'EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionCorsPolicyArgs' cors_policy: CORSPolicy defines Cross-Origin-Resource-Sharing configuration, including which CORS response headers will be set.
1588
1613
  Structure is documented below.
1589
1614
  :param 'EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionUrlRewriteArgs' url_rewrite: The URL rewrite configuration for requests that match this route.
@@ -1591,6 +1616,8 @@ class EdgeCacheServiceRoutingPathMatcherRouteRuleRouteAction(dict):
1591
1616
  """
1592
1617
  if cdn_policy is not None:
1593
1618
  pulumi.set(__self__, "cdn_policy", cdn_policy)
1619
+ if compression_mode is not None:
1620
+ pulumi.set(__self__, "compression_mode", compression_mode)
1594
1621
  if cors_policy is not None:
1595
1622
  pulumi.set(__self__, "cors_policy", cors_policy)
1596
1623
  if url_rewrite is not None:
@@ -1605,6 +1632,16 @@ class EdgeCacheServiceRoutingPathMatcherRouteRuleRouteAction(dict):
1605
1632
  """
1606
1633
  return pulumi.get(self, "cdn_policy")
1607
1634
 
1635
+ @property
1636
+ @pulumi.getter(name="compressionMode")
1637
+ def compression_mode(self) -> Optional[str]:
1638
+ """
1639
+ Setting the compression mode to automatic enables dynamic compression for every eligible response.
1640
+ When dynamic compression is enabled, it is recommended to also set a cache policy to maximize efficiency.
1641
+ Possible values are: `DISABLED`, `AUTOMATIC`.
1642
+ """
1643
+ return pulumi.get(self, "compression_mode")
1644
+
1608
1645
  @property
1609
1646
  @pulumi.getter(name="corsPolicy")
1610
1647
  def cors_policy(self) -> Optional['outputs.EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionCorsPolicy']:
@@ -2448,6 +2485,44 @@ class EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionUrlRewrite(dict):
2448
2485
  return pulumi.get(self, "path_template_rewrite")
2449
2486
 
2450
2487
 
2488
+ @pulumi.output_type
2489
+ class EdgeCacheServiceRoutingPathMatcherRouteRuleRouteMethods(dict):
2490
+ @staticmethod
2491
+ def __key_warning(key: str):
2492
+ suggest = None
2493
+ if key == "allowedMethods":
2494
+ suggest = "allowed_methods"
2495
+
2496
+ if suggest:
2497
+ pulumi.log.warn(f"Key '{key}' not found in EdgeCacheServiceRoutingPathMatcherRouteRuleRouteMethods. Access the value via the '{suggest}' property getter instead.")
2498
+
2499
+ def __getitem__(self, key: str) -> Any:
2500
+ EdgeCacheServiceRoutingPathMatcherRouteRuleRouteMethods.__key_warning(key)
2501
+ return super().__getitem__(key)
2502
+
2503
+ def get(self, key: str, default = None) -> Any:
2504
+ EdgeCacheServiceRoutingPathMatcherRouteRuleRouteMethods.__key_warning(key)
2505
+ return super().get(key, default)
2506
+
2507
+ def __init__(__self__, *,
2508
+ allowed_methods: Optional[Sequence[str]] = None):
2509
+ """
2510
+ :param Sequence[str] allowed_methods: The non-empty set of HTTP methods that are allowed for this route.
2511
+ Any combination of "GET", "HEAD", "OPTIONS", "PUT", "POST", "DELETE", and "PATCH".
2512
+ """
2513
+ if allowed_methods is not None:
2514
+ pulumi.set(__self__, "allowed_methods", allowed_methods)
2515
+
2516
+ @property
2517
+ @pulumi.getter(name="allowedMethods")
2518
+ def allowed_methods(self) -> Optional[Sequence[str]]:
2519
+ """
2520
+ The non-empty set of HTTP methods that are allowed for this route.
2521
+ Any combination of "GET", "HEAD", "OPTIONS", "PUT", "POST", "DELETE", and "PATCH".
2522
+ """
2523
+ return pulumi.get(self, "allowed_methods")
2524
+
2525
+
2451
2526
  @pulumi.output_type
2452
2527
  class EdgeCacheServiceRoutingPathMatcherRouteRuleUrlRedirect(dict):
2453
2528
  @staticmethod
@@ -7,9 +7,11 @@ import typing
7
7
  # Export this package's modules as members:
8
8
  from .get_parameter import *
9
9
  from .get_parameter_version import *
10
+ from .get_parameter_version_render import *
10
11
  from .get_parameters import *
11
12
  from .get_regional_parameter import *
12
13
  from .get_regional_parameter_version import *
14
+ from .get_regional_parameter_version_render import *
13
15
  from .get_regional_parameters import *
14
16
  from .parameter import *
15
17
  from .parameter_version import *