pulumi-cloudflare 6.10.1__py3-none-any.whl → 6.11.0__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 (96) hide show
  1. pulumi_cloudflare/__init__.py +31 -0
  2. pulumi_cloudflare/_inputs.py +2127 -309
  3. pulumi_cloudflare/access_application.py +7 -7
  4. pulumi_cloudflare/access_identity_provider.py +60 -0
  5. pulumi_cloudflare/access_mutual_tls_hostname_settings.py +26 -0
  6. pulumi_cloudflare/access_organization.py +56 -0
  7. pulumi_cloudflare/access_policy.py +96 -0
  8. pulumi_cloudflare/account.py +47 -0
  9. pulumi_cloudflare/account_dns_settings.py +62 -0
  10. pulumi_cloudflare/account_subscription.py +36 -0
  11. pulumi_cloudflare/account_token.py +90 -0
  12. pulumi_cloudflare/api_shield.py +0 -68
  13. pulumi_cloudflare/api_token.py +88 -0
  14. pulumi_cloudflare/authenticated_origin_pulls.py +26 -0
  15. pulumi_cloudflare/content_scanning.py +253 -0
  16. pulumi_cloudflare/custom_hostname.py +144 -0
  17. pulumi_cloudflare/custom_pages.py +7 -7
  18. pulumi_cloudflare/device_managed_networks.py +28 -0
  19. pulumi_cloudflare/device_posture_integration.py +34 -0
  20. pulumi_cloudflare/device_posture_rule.py +46 -0
  21. pulumi_cloudflare/dlp_custom_profile.py +57 -7
  22. pulumi_cloudflare/dns_firewall.py +50 -0
  23. pulumi_cloudflare/dns_record.py +38 -0
  24. pulumi_cloudflare/get_account.py +15 -1
  25. pulumi_cloudflare/get_api_shield.py +5 -27
  26. pulumi_cloudflare/get_content_scanning.py +136 -0
  27. pulumi_cloudflare/get_custom_pages.py +3 -3
  28. pulumi_cloudflare/get_list.py +2 -2
  29. pulumi_cloudflare/get_magic_transit_connector.py +12 -1
  30. pulumi_cloudflare/get_notification_policy.py +3 -3
  31. pulumi_cloudflare/get_notification_policy_webhooks.py +2 -2
  32. pulumi_cloudflare/get_organization.py +171 -0
  33. pulumi_cloudflare/get_organization_profile.py +154 -0
  34. pulumi_cloudflare/get_organizations.py +248 -0
  35. pulumi_cloudflare/get_pages_project.py +77 -7
  36. pulumi_cloudflare/get_worker.py +15 -1
  37. pulumi_cloudflare/get_zero_trust_access_application.py +1 -1
  38. pulumi_cloudflare/get_zero_trust_dex_test.py +7 -0
  39. pulumi_cloudflare/get_zero_trust_gateway_policy.py +1 -1
  40. pulumi_cloudflare/get_zero_trust_tunnel_cloudflared_config.py +18 -4
  41. pulumi_cloudflare/healthcheck.py +84 -0
  42. pulumi_cloudflare/hyperdrive_config.py +52 -0
  43. pulumi_cloudflare/keyless_certificate.py +34 -0
  44. pulumi_cloudflare/list_item.py +16 -0
  45. pulumi_cloudflare/load_balancer.py +282 -0
  46. pulumi_cloudflare/logpush_job.py +80 -0
  47. pulumi_cloudflare/magic_transit_site_acl.py +56 -0
  48. pulumi_cloudflare/magic_transit_site_lan.py +82 -0
  49. pulumi_cloudflare/magic_transit_site_wan.py +36 -0
  50. pulumi_cloudflare/magic_wan_static_route.py +34 -0
  51. pulumi_cloudflare/notification_policy.py +145 -7
  52. pulumi_cloudflare/organization.py +297 -0
  53. pulumi_cloudflare/organization_profile.py +340 -0
  54. pulumi_cloudflare/outputs.py +3322 -642
  55. pulumi_cloudflare/page_rule.py +34 -0
  56. pulumi_cloudflare/pages_project.py +571 -30
  57. pulumi_cloudflare/pulumi-plugin.json +1 -1
  58. pulumi_cloudflare/queue_consumer.py +38 -0
  59. pulumi_cloudflare/r2_bucket_cors.py +38 -0
  60. pulumi_cloudflare/r2_bucket_event_notification.py +19 -18
  61. pulumi_cloudflare/r2_bucket_lifecycle.py +70 -0
  62. pulumi_cloudflare/record.py +38 -0
  63. pulumi_cloudflare/snippet.py +42 -0
  64. pulumi_cloudflare/snippet_rules.py +28 -0
  65. pulumi_cloudflare/static_route.py +34 -0
  66. pulumi_cloudflare/teams_account.py +148 -0
  67. pulumi_cloudflare/teams_rule.py +259 -7
  68. pulumi_cloudflare/tunnel_config.py +50 -3
  69. pulumi_cloudflare/worker.py +88 -0
  70. pulumi_cloudflare/worker_script.py +158 -2
  71. pulumi_cloudflare/worker_version.py +112 -0
  72. pulumi_cloudflare/workers_deployment.py +34 -0
  73. pulumi_cloudflare/workers_script.py +158 -2
  74. pulumi_cloudflare/zero_trust_access_application.py +7 -7
  75. pulumi_cloudflare/zero_trust_access_identity_provider.py +60 -0
  76. pulumi_cloudflare/zero_trust_access_mtls_hostname_settings.py +26 -0
  77. pulumi_cloudflare/zero_trust_access_policy.py +96 -0
  78. pulumi_cloudflare/zero_trust_device_managed_networks.py +28 -0
  79. pulumi_cloudflare/zero_trust_device_posture_integration.py +34 -0
  80. pulumi_cloudflare/zero_trust_device_posture_rule.py +46 -0
  81. pulumi_cloudflare/zero_trust_dex_test.py +63 -3
  82. pulumi_cloudflare/zero_trust_dlp_custom_entry.py +6 -7
  83. pulumi_cloudflare/zero_trust_dlp_custom_profile.py +57 -7
  84. pulumi_cloudflare/zero_trust_dlp_entry.py +6 -7
  85. pulumi_cloudflare/zero_trust_dlp_predefined_entry.py +1 -1
  86. pulumi_cloudflare/zero_trust_gateway_policy.py +259 -7
  87. pulumi_cloudflare/zero_trust_gateway_settings.py +148 -0
  88. pulumi_cloudflare/zero_trust_organization.py +56 -0
  89. pulumi_cloudflare/zero_trust_tunnel_cloudflared_config.py +50 -3
  90. pulumi_cloudflare/zone_cache_variants.py +108 -0
  91. pulumi_cloudflare/zone_dns_settings.py +60 -0
  92. pulumi_cloudflare/zone_subscription.py +36 -0
  93. {pulumi_cloudflare-6.10.1.dist-info → pulumi_cloudflare-6.11.0.dist-info}/METADATA +1 -1
  94. {pulumi_cloudflare-6.10.1.dist-info → pulumi_cloudflare-6.11.0.dist-info}/RECORD +96 -89
  95. {pulumi_cloudflare-6.10.1.dist-info → pulumi_cloudflare-6.11.0.dist-info}/WHEEL +0 -0
  96. {pulumi_cloudflare-6.10.1.dist-info → pulumi_cloudflare-6.11.0.dist-info}/top_level.txt +0 -0
@@ -531,6 +531,8 @@ __all__ = [
531
531
  'AccountDnsSettingsZoneDefaultsNameserversArgsDict',
532
532
  'AccountDnsSettingsZoneDefaultsSoaArgs',
533
533
  'AccountDnsSettingsZoneDefaultsSoaArgsDict',
534
+ 'AccountManagedByArgs',
535
+ 'AccountManagedByArgsDict',
534
536
  'AccountMemberPolicyArgs',
535
537
  'AccountMemberPolicyArgsDict',
536
538
  'AccountMemberPolicyPermissionGroupArgs',
@@ -559,14 +561,6 @@ __all__ = [
559
561
  'AddressMapMembershipArgsDict',
560
562
  'ApiShieldAuthIdCharacteristicArgs',
561
563
  'ApiShieldAuthIdCharacteristicArgsDict',
562
- 'ApiShieldErrorArgs',
563
- 'ApiShieldErrorArgsDict',
564
- 'ApiShieldErrorSourceArgs',
565
- 'ApiShieldErrorSourceArgsDict',
566
- 'ApiShieldMessageArgs',
567
- 'ApiShieldMessageArgsDict',
568
- 'ApiShieldMessageSourceArgs',
569
- 'ApiShieldMessageSourceArgsDict',
570
564
  'ApiShieldOperationFeaturesArgs',
571
565
  'ApiShieldOperationFeaturesArgsDict',
572
566
  'ApiShieldOperationFeaturesApiRoutingArgs',
@@ -839,6 +833,14 @@ __all__ = [
839
833
  'ObservatoryScheduledTestTestMobileReportErrorArgsDict',
840
834
  'ObservatoryScheduledTestTestRegionArgs',
841
835
  'ObservatoryScheduledTestTestRegionArgsDict',
836
+ 'OrganizationMetaArgs',
837
+ 'OrganizationMetaArgsDict',
838
+ 'OrganizationMetaFlagsArgs',
839
+ 'OrganizationMetaFlagsArgsDict',
840
+ 'OrganizationParentArgs',
841
+ 'OrganizationParentArgsDict',
842
+ 'OrganizationProfileArgs',
843
+ 'OrganizationProfileArgsDict',
842
844
  'PageRuleActionsArgs',
843
845
  'PageRuleActionsArgsDict',
844
846
  'PageRuleActionsCacheKeyFieldsArgs',
@@ -899,6 +901,8 @@ __all__ = [
899
901
  'PagesProjectDeploymentConfigsPreviewHyperdriveBindingsArgsDict',
900
902
  'PagesProjectDeploymentConfigsPreviewKvNamespacesArgs',
901
903
  'PagesProjectDeploymentConfigsPreviewKvNamespacesArgsDict',
904
+ 'PagesProjectDeploymentConfigsPreviewLimitsArgs',
905
+ 'PagesProjectDeploymentConfigsPreviewLimitsArgsDict',
902
906
  'PagesProjectDeploymentConfigsPreviewMtlsCertificatesArgs',
903
907
  'PagesProjectDeploymentConfigsPreviewMtlsCertificatesArgsDict',
904
908
  'PagesProjectDeploymentConfigsPreviewPlacementArgs',
@@ -929,6 +933,8 @@ __all__ = [
929
933
  'PagesProjectDeploymentConfigsProductionHyperdriveBindingsArgsDict',
930
934
  'PagesProjectDeploymentConfigsProductionKvNamespacesArgs',
931
935
  'PagesProjectDeploymentConfigsProductionKvNamespacesArgsDict',
936
+ 'PagesProjectDeploymentConfigsProductionLimitsArgs',
937
+ 'PagesProjectDeploymentConfigsProductionLimitsArgsDict',
932
938
  'PagesProjectDeploymentConfigsProductionMtlsCertificatesArgs',
933
939
  'PagesProjectDeploymentConfigsProductionMtlsCertificatesArgsDict',
934
940
  'PagesProjectDeploymentConfigsProductionPlacementArgs',
@@ -1243,8 +1249,6 @@ __all__ = [
1243
1249
  'TunnelConfigConfigOriginRequestArgsDict',
1244
1250
  'TunnelConfigConfigOriginRequestAccessArgs',
1245
1251
  'TunnelConfigConfigOriginRequestAccessArgsDict',
1246
- 'TunnelConfigConfigWarpRoutingArgs',
1247
- 'TunnelConfigConfigWarpRoutingArgsDict',
1248
1252
  'TunnelConnectionArgs',
1249
1253
  'TunnelConnectionArgsDict',
1250
1254
  'UserAgentBlockingRuleConfigurationArgs',
@@ -1267,6 +1271,18 @@ __all__ = [
1267
1271
  'WorkerObservabilityArgsDict',
1268
1272
  'WorkerObservabilityLogsArgs',
1269
1273
  'WorkerObservabilityLogsArgsDict',
1274
+ 'WorkerReferencesArgs',
1275
+ 'WorkerReferencesArgsDict',
1276
+ 'WorkerReferencesDispatchNamespaceOutboundArgs',
1277
+ 'WorkerReferencesDispatchNamespaceOutboundArgsDict',
1278
+ 'WorkerReferencesDomainArgs',
1279
+ 'WorkerReferencesDomainArgsDict',
1280
+ 'WorkerReferencesDurableObjectArgs',
1281
+ 'WorkerReferencesDurableObjectArgsDict',
1282
+ 'WorkerReferencesQueueArgs',
1283
+ 'WorkerReferencesQueueArgsDict',
1284
+ 'WorkerReferencesWorkerArgs',
1285
+ 'WorkerReferencesWorkerArgsDict',
1270
1286
  'WorkerScriptAssetsArgs',
1271
1287
  'WorkerScriptAssetsArgsDict',
1272
1288
  'WorkerScriptAssetsConfigArgs',
@@ -2085,8 +2101,6 @@ __all__ = [
2085
2101
  'ZeroTrustTunnelCloudflaredConfigConfigOriginRequestArgsDict',
2086
2102
  'ZeroTrustTunnelCloudflaredConfigConfigOriginRequestAccessArgs',
2087
2103
  'ZeroTrustTunnelCloudflaredConfigConfigOriginRequestAccessArgsDict',
2088
- 'ZeroTrustTunnelCloudflaredConfigConfigWarpRoutingArgs',
2089
- 'ZeroTrustTunnelCloudflaredConfigConfigWarpRoutingArgsDict',
2090
2104
  'ZeroTrustTunnelCloudflaredConnectionArgs',
2091
2105
  'ZeroTrustTunnelCloudflaredConnectionArgsDict',
2092
2106
  'ZeroTrustTunnelWarpConnectorConnectionArgs',
@@ -2179,6 +2193,20 @@ __all__ = [
2179
2193
  'GetLoadBalancerPoolFilterArgsDict',
2180
2194
  'GetMagicTransitSiteFilterArgs',
2181
2195
  'GetMagicTransitSiteFilterArgsDict',
2196
+ 'GetOrganizationFilterArgs',
2197
+ 'GetOrganizationFilterArgsDict',
2198
+ 'GetOrganizationFilterContainingArgs',
2199
+ 'GetOrganizationFilterContainingArgsDict',
2200
+ 'GetOrganizationFilterNameArgs',
2201
+ 'GetOrganizationFilterNameArgsDict',
2202
+ 'GetOrganizationFilterParentArgs',
2203
+ 'GetOrganizationFilterParentArgsDict',
2204
+ 'GetOrganizationsContainingArgs',
2205
+ 'GetOrganizationsContainingArgsDict',
2206
+ 'GetOrganizationsNameArgs',
2207
+ 'GetOrganizationsNameArgsDict',
2208
+ 'GetOrganizationsParentArgs',
2209
+ 'GetOrganizationsParentArgsDict',
2182
2210
  'GetOriginCaCertificateFilterArgs',
2183
2211
  'GetOriginCaCertificateFilterArgsDict',
2184
2212
  'GetSchemaValidationSchemasFilterArgs',
@@ -2205,6 +2233,8 @@ __all__ = [
2205
2233
  'GetZeroTrustAccessInfrastructureTargetFilterArgsDict',
2206
2234
  'GetZeroTrustAccessServiceTokenFilterArgs',
2207
2235
  'GetZeroTrustAccessServiceTokenFilterArgsDict',
2236
+ 'GetZeroTrustDexTestTargetPolicyArgs',
2237
+ 'GetZeroTrustDexTestTargetPolicyArgsDict',
2208
2238
  'GetZeroTrustListFilterArgs',
2209
2239
  'GetZeroTrustListFilterArgsDict',
2210
2240
  'GetZeroTrustNetworkHostnameRouteFilterArgs',
@@ -2416,6 +2446,10 @@ if not MYPY:
2416
2446
  The L4 protocol of the destination. When omitted, both UDP and TCP traffic will match.
2417
2447
  Available values: "tcp", "udp".
2418
2448
  """
2449
+ mcp_server_id: NotRequired[pulumi.Input[_builtins.str]]
2450
+ """
2451
+ A MCP server id configured in ai-controls. Access will secure the MCP server if accessed through a MCP portal.
2452
+ """
2419
2453
  port_range: NotRequired[pulumi.Input[_builtins.str]]
2420
2454
  """
2421
2455
  The port range of the destination. Can be a single port or a range of ports. When omitted, all ports will match.
@@ -2441,6 +2475,7 @@ class AccessApplicationDestinationArgs:
2441
2475
  cidr: Optional[pulumi.Input[_builtins.str]] = None,
2442
2476
  hostname: Optional[pulumi.Input[_builtins.str]] = None,
2443
2477
  l4_protocol: Optional[pulumi.Input[_builtins.str]] = None,
2478
+ mcp_server_id: Optional[pulumi.Input[_builtins.str]] = None,
2444
2479
  port_range: Optional[pulumi.Input[_builtins.str]] = None,
2445
2480
  type: Optional[pulumi.Input[_builtins.str]] = None,
2446
2481
  uri: Optional[pulumi.Input[_builtins.str]] = None,
@@ -2450,6 +2485,7 @@ class AccessApplicationDestinationArgs:
2450
2485
  :param pulumi.Input[_builtins.str] hostname: The hostname of the destination. Matches a valid SNI served by an HTTPS origin.
2451
2486
  :param pulumi.Input[_builtins.str] l4_protocol: The L4 protocol of the destination. When omitted, both UDP and TCP traffic will match.
2452
2487
  Available values: "tcp", "udp".
2488
+ :param pulumi.Input[_builtins.str] mcp_server_id: A MCP server id configured in ai-controls. Access will secure the MCP server if accessed through a MCP portal.
2453
2489
  :param pulumi.Input[_builtins.str] port_range: The port range of the destination. Can be a single port or a range of ports. When omitted, all ports will match.
2454
2490
  :param pulumi.Input[_builtins.str] type: Available values: "public", "private".
2455
2491
  :param pulumi.Input[_builtins.str] uri: The URI of the destination. Public destinations' URIs can include a domain and path with [wildcards](https://developers.cloudflare.com/cloudflare-one/policies/access/app-paths/).
@@ -2461,6 +2497,8 @@ class AccessApplicationDestinationArgs:
2461
2497
  pulumi.set(__self__, "hostname", hostname)
2462
2498
  if l4_protocol is not None:
2463
2499
  pulumi.set(__self__, "l4_protocol", l4_protocol)
2500
+ if mcp_server_id is not None:
2501
+ pulumi.set(__self__, "mcp_server_id", mcp_server_id)
2464
2502
  if port_range is not None:
2465
2503
  pulumi.set(__self__, "port_range", port_range)
2466
2504
  if type is not None:
@@ -2507,6 +2545,18 @@ class AccessApplicationDestinationArgs:
2507
2545
  def l4_protocol(self, value: Optional[pulumi.Input[_builtins.str]]):
2508
2546
  pulumi.set(self, "l4_protocol", value)
2509
2547
 
2548
+ @_builtins.property
2549
+ @pulumi.getter(name="mcpServerId")
2550
+ def mcp_server_id(self) -> Optional[pulumi.Input[_builtins.str]]:
2551
+ """
2552
+ A MCP server id configured in ai-controls. Access will secure the MCP server if accessed through a MCP portal.
2553
+ """
2554
+ return pulumi.get(self, "mcp_server_id")
2555
+
2556
+ @mcp_server_id.setter
2557
+ def mcp_server_id(self, value: Optional[pulumi.Input[_builtins.str]]):
2558
+ pulumi.set(self, "mcp_server_id", value)
2559
+
2510
2560
  @_builtins.property
2511
2561
  @pulumi.getter(name="portRange")
2512
2562
  def port_range(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -17353,6 +17403,58 @@ class AccountDnsSettingsZoneDefaultsSoaArgs:
17353
17403
  pulumi.set(self, "ttl", value)
17354
17404
 
17355
17405
 
17406
+ if not MYPY:
17407
+ class AccountManagedByArgsDict(TypedDict):
17408
+ parent_org_id: NotRequired[pulumi.Input[_builtins.str]]
17409
+ """
17410
+ ID of the parent Organization, if one exists
17411
+ """
17412
+ parent_org_name: NotRequired[pulumi.Input[_builtins.str]]
17413
+ """
17414
+ Name of the parent Organization, if one exists
17415
+ """
17416
+ elif False:
17417
+ AccountManagedByArgsDict: TypeAlias = Mapping[str, Any]
17418
+
17419
+ @pulumi.input_type
17420
+ class AccountManagedByArgs:
17421
+ def __init__(__self__, *,
17422
+ parent_org_id: Optional[pulumi.Input[_builtins.str]] = None,
17423
+ parent_org_name: Optional[pulumi.Input[_builtins.str]] = None):
17424
+ """
17425
+ :param pulumi.Input[_builtins.str] parent_org_id: ID of the parent Organization, if one exists
17426
+ :param pulumi.Input[_builtins.str] parent_org_name: Name of the parent Organization, if one exists
17427
+ """
17428
+ if parent_org_id is not None:
17429
+ pulumi.set(__self__, "parent_org_id", parent_org_id)
17430
+ if parent_org_name is not None:
17431
+ pulumi.set(__self__, "parent_org_name", parent_org_name)
17432
+
17433
+ @_builtins.property
17434
+ @pulumi.getter(name="parentOrgId")
17435
+ def parent_org_id(self) -> Optional[pulumi.Input[_builtins.str]]:
17436
+ """
17437
+ ID of the parent Organization, if one exists
17438
+ """
17439
+ return pulumi.get(self, "parent_org_id")
17440
+
17441
+ @parent_org_id.setter
17442
+ def parent_org_id(self, value: Optional[pulumi.Input[_builtins.str]]):
17443
+ pulumi.set(self, "parent_org_id", value)
17444
+
17445
+ @_builtins.property
17446
+ @pulumi.getter(name="parentOrgName")
17447
+ def parent_org_name(self) -> Optional[pulumi.Input[_builtins.str]]:
17448
+ """
17449
+ Name of the parent Organization, if one exists
17450
+ """
17451
+ return pulumi.get(self, "parent_org_name")
17452
+
17453
+ @parent_org_name.setter
17454
+ def parent_org_name(self, value: Optional[pulumi.Input[_builtins.str]]):
17455
+ pulumi.set(self, "parent_org_name", value)
17456
+
17457
+
17356
17458
  if not MYPY:
17357
17459
  class AccountMemberPolicyArgsDict(TypedDict):
17358
17460
  access: pulumi.Input[_builtins.str]
@@ -18252,176 +18354,6 @@ class ApiShieldAuthIdCharacteristicArgs:
18252
18354
  pulumi.set(self, "type", value)
18253
18355
 
18254
18356
 
18255
- if not MYPY:
18256
- class ApiShieldErrorArgsDict(TypedDict):
18257
- code: NotRequired[pulumi.Input[_builtins.int]]
18258
- documentation_url: NotRequired[pulumi.Input[_builtins.str]]
18259
- message: NotRequired[pulumi.Input[_builtins.str]]
18260
- source: NotRequired[pulumi.Input['ApiShieldErrorSourceArgsDict']]
18261
- elif False:
18262
- ApiShieldErrorArgsDict: TypeAlias = Mapping[str, Any]
18263
-
18264
- @pulumi.input_type
18265
- class ApiShieldErrorArgs:
18266
- def __init__(__self__, *,
18267
- code: Optional[pulumi.Input[_builtins.int]] = None,
18268
- documentation_url: Optional[pulumi.Input[_builtins.str]] = None,
18269
- message: Optional[pulumi.Input[_builtins.str]] = None,
18270
- source: Optional[pulumi.Input['ApiShieldErrorSourceArgs']] = None):
18271
- if code is not None:
18272
- pulumi.set(__self__, "code", code)
18273
- if documentation_url is not None:
18274
- pulumi.set(__self__, "documentation_url", documentation_url)
18275
- if message is not None:
18276
- pulumi.set(__self__, "message", message)
18277
- if source is not None:
18278
- pulumi.set(__self__, "source", source)
18279
-
18280
- @_builtins.property
18281
- @pulumi.getter
18282
- def code(self) -> Optional[pulumi.Input[_builtins.int]]:
18283
- return pulumi.get(self, "code")
18284
-
18285
- @code.setter
18286
- def code(self, value: Optional[pulumi.Input[_builtins.int]]):
18287
- pulumi.set(self, "code", value)
18288
-
18289
- @_builtins.property
18290
- @pulumi.getter(name="documentationUrl")
18291
- def documentation_url(self) -> Optional[pulumi.Input[_builtins.str]]:
18292
- return pulumi.get(self, "documentation_url")
18293
-
18294
- @documentation_url.setter
18295
- def documentation_url(self, value: Optional[pulumi.Input[_builtins.str]]):
18296
- pulumi.set(self, "documentation_url", value)
18297
-
18298
- @_builtins.property
18299
- @pulumi.getter
18300
- def message(self) -> Optional[pulumi.Input[_builtins.str]]:
18301
- return pulumi.get(self, "message")
18302
-
18303
- @message.setter
18304
- def message(self, value: Optional[pulumi.Input[_builtins.str]]):
18305
- pulumi.set(self, "message", value)
18306
-
18307
- @_builtins.property
18308
- @pulumi.getter
18309
- def source(self) -> Optional[pulumi.Input['ApiShieldErrorSourceArgs']]:
18310
- return pulumi.get(self, "source")
18311
-
18312
- @source.setter
18313
- def source(self, value: Optional[pulumi.Input['ApiShieldErrorSourceArgs']]):
18314
- pulumi.set(self, "source", value)
18315
-
18316
-
18317
- if not MYPY:
18318
- class ApiShieldErrorSourceArgsDict(TypedDict):
18319
- pointer: NotRequired[pulumi.Input[_builtins.str]]
18320
- elif False:
18321
- ApiShieldErrorSourceArgsDict: TypeAlias = Mapping[str, Any]
18322
-
18323
- @pulumi.input_type
18324
- class ApiShieldErrorSourceArgs:
18325
- def __init__(__self__, *,
18326
- pointer: Optional[pulumi.Input[_builtins.str]] = None):
18327
- if pointer is not None:
18328
- pulumi.set(__self__, "pointer", pointer)
18329
-
18330
- @_builtins.property
18331
- @pulumi.getter
18332
- def pointer(self) -> Optional[pulumi.Input[_builtins.str]]:
18333
- return pulumi.get(self, "pointer")
18334
-
18335
- @pointer.setter
18336
- def pointer(self, value: Optional[pulumi.Input[_builtins.str]]):
18337
- pulumi.set(self, "pointer", value)
18338
-
18339
-
18340
- if not MYPY:
18341
- class ApiShieldMessageArgsDict(TypedDict):
18342
- code: NotRequired[pulumi.Input[_builtins.int]]
18343
- documentation_url: NotRequired[pulumi.Input[_builtins.str]]
18344
- message: NotRequired[pulumi.Input[_builtins.str]]
18345
- source: NotRequired[pulumi.Input['ApiShieldMessageSourceArgsDict']]
18346
- elif False:
18347
- ApiShieldMessageArgsDict: TypeAlias = Mapping[str, Any]
18348
-
18349
- @pulumi.input_type
18350
- class ApiShieldMessageArgs:
18351
- def __init__(__self__, *,
18352
- code: Optional[pulumi.Input[_builtins.int]] = None,
18353
- documentation_url: Optional[pulumi.Input[_builtins.str]] = None,
18354
- message: Optional[pulumi.Input[_builtins.str]] = None,
18355
- source: Optional[pulumi.Input['ApiShieldMessageSourceArgs']] = None):
18356
- if code is not None:
18357
- pulumi.set(__self__, "code", code)
18358
- if documentation_url is not None:
18359
- pulumi.set(__self__, "documentation_url", documentation_url)
18360
- if message is not None:
18361
- pulumi.set(__self__, "message", message)
18362
- if source is not None:
18363
- pulumi.set(__self__, "source", source)
18364
-
18365
- @_builtins.property
18366
- @pulumi.getter
18367
- def code(self) -> Optional[pulumi.Input[_builtins.int]]:
18368
- return pulumi.get(self, "code")
18369
-
18370
- @code.setter
18371
- def code(self, value: Optional[pulumi.Input[_builtins.int]]):
18372
- pulumi.set(self, "code", value)
18373
-
18374
- @_builtins.property
18375
- @pulumi.getter(name="documentationUrl")
18376
- def documentation_url(self) -> Optional[pulumi.Input[_builtins.str]]:
18377
- return pulumi.get(self, "documentation_url")
18378
-
18379
- @documentation_url.setter
18380
- def documentation_url(self, value: Optional[pulumi.Input[_builtins.str]]):
18381
- pulumi.set(self, "documentation_url", value)
18382
-
18383
- @_builtins.property
18384
- @pulumi.getter
18385
- def message(self) -> Optional[pulumi.Input[_builtins.str]]:
18386
- return pulumi.get(self, "message")
18387
-
18388
- @message.setter
18389
- def message(self, value: Optional[pulumi.Input[_builtins.str]]):
18390
- pulumi.set(self, "message", value)
18391
-
18392
- @_builtins.property
18393
- @pulumi.getter
18394
- def source(self) -> Optional[pulumi.Input['ApiShieldMessageSourceArgs']]:
18395
- return pulumi.get(self, "source")
18396
-
18397
- @source.setter
18398
- def source(self, value: Optional[pulumi.Input['ApiShieldMessageSourceArgs']]):
18399
- pulumi.set(self, "source", value)
18400
-
18401
-
18402
- if not MYPY:
18403
- class ApiShieldMessageSourceArgsDict(TypedDict):
18404
- pointer: NotRequired[pulumi.Input[_builtins.str]]
18405
- elif False:
18406
- ApiShieldMessageSourceArgsDict: TypeAlias = Mapping[str, Any]
18407
-
18408
- @pulumi.input_type
18409
- class ApiShieldMessageSourceArgs:
18410
- def __init__(__self__, *,
18411
- pointer: Optional[pulumi.Input[_builtins.str]] = None):
18412
- if pointer is not None:
18413
- pulumi.set(__self__, "pointer", pointer)
18414
-
18415
- @_builtins.property
18416
- @pulumi.getter
18417
- def pointer(self) -> Optional[pulumi.Input[_builtins.str]]:
18418
- return pulumi.get(self, "pointer")
18419
-
18420
- @pointer.setter
18421
- def pointer(self, value: Optional[pulumi.Input[_builtins.str]]):
18422
- pulumi.set(self, "pointer", value)
18423
-
18424
-
18425
18357
  if not MYPY:
18426
18358
  class ApiShieldOperationFeaturesArgsDict(TypedDict):
18427
18359
  api_routing: NotRequired[pulumi.Input['ApiShieldOperationFeaturesApiRoutingArgsDict']]
@@ -21547,7 +21479,7 @@ if not MYPY:
21547
21479
  """
21548
21480
  os_version_extra: NotRequired[pulumi.Input[_builtins.str]]
21549
21481
  """
21550
- Additional version data. For Mac or iOS, the Product Version Extra. For Linux, the kernel release version. (Mac, iOS, and Linux only).
21482
+ Additional version data. For Mac or iOS, the Product Version Extra. For Linux, the distribution name and version. (Mac, iOS, and Linux only).
21551
21483
  """
21552
21484
  overall: NotRequired[pulumi.Input[_builtins.str]]
21553
21485
  """
@@ -21688,7 +21620,7 @@ class DevicePostureRuleInputArgs:
21688
21620
  :param pulumi.Input[_builtins.str] os: Os Version.
21689
21621
  :param pulumi.Input[_builtins.str] os_distro_name: Operating System Distribution Name (linux only).
21690
21622
  :param pulumi.Input[_builtins.str] os_distro_revision: Version of OS Distribution (linux only).
21691
- :param pulumi.Input[_builtins.str] os_version_extra: Additional version data. For Mac or iOS, the Product Version Extra. For Linux, the kernel release version. (Mac, iOS, and Linux only).
21623
+ :param pulumi.Input[_builtins.str] os_version_extra: Additional version data. For Mac or iOS, the Product Version Extra. For Linux, the distribution name and version. (Mac, iOS, and Linux only).
21692
21624
  :param pulumi.Input[_builtins.str] overall: Overall.
21693
21625
  :param pulumi.Input[_builtins.str] path: File path.
21694
21626
  :param pulumi.Input[_builtins.bool] require_all: Whether to check all disks for encryption.
@@ -22110,7 +22042,7 @@ class DevicePostureRuleInputArgs:
22110
22042
  @pulumi.getter(name="osVersionExtra")
22111
22043
  def os_version_extra(self) -> Optional[pulumi.Input[_builtins.str]]:
22112
22044
  """
22113
- Additional version data. For Mac or iOS, the Product Version Extra. For Linux, the kernel release version. (Mac, iOS, and Linux only).
22045
+ Additional version data. For Mac or iOS, the Product Version Extra. For Linux, the distribution name and version. (Mac, iOS, and Linux only).
22114
22046
  """
22115
22047
  return pulumi.get(self, "os_version_extra")
22116
22048
 
@@ -29469,6 +29401,10 @@ if not MYPY:
29469
29401
  """
29470
29402
  Usage depends on specific alert type
29471
29403
  """
29404
+ types: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
29405
+ """
29406
+ Usage depends on specific alert type
29407
+ """
29472
29408
  wheres: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
29473
29409
  """
29474
29410
  Usage depends on specific alert type
@@ -29523,6 +29459,7 @@ class NotificationPolicyFiltersArgs:
29523
29459
  traffic_exclusions: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
29524
29460
  tunnel_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
29525
29461
  tunnel_names: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
29462
+ types: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
29526
29463
  wheres: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
29527
29464
  zones: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
29528
29465
  """
@@ -29566,6 +29503,7 @@ class NotificationPolicyFiltersArgs:
29566
29503
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] traffic_exclusions: Used for configuring traffic*anomalies*alert
29567
29504
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tunnel_ids: Used for configuring tunnel*health*event
29568
29505
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tunnel_names: Usage depends on specific alert type
29506
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] types: Usage depends on specific alert type
29569
29507
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] wheres: Usage depends on specific alert type
29570
29508
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] zones: Usage depends on specific alert type
29571
29509
  """
@@ -29649,6 +29587,8 @@ class NotificationPolicyFiltersArgs:
29649
29587
  pulumi.set(__self__, "tunnel_ids", tunnel_ids)
29650
29588
  if tunnel_names is not None:
29651
29589
  pulumi.set(__self__, "tunnel_names", tunnel_names)
29590
+ if types is not None:
29591
+ pulumi.set(__self__, "types", types)
29652
29592
  if wheres is not None:
29653
29593
  pulumi.set(__self__, "wheres", wheres)
29654
29594
  if zones is not None:
@@ -30134,6 +30074,18 @@ class NotificationPolicyFiltersArgs:
30134
30074
  def tunnel_names(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
30135
30075
  pulumi.set(self, "tunnel_names", value)
30136
30076
 
30077
+ @_builtins.property
30078
+ @pulumi.getter
30079
+ def types(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
30080
+ """
30081
+ Usage depends on specific alert type
30082
+ """
30083
+ return pulumi.get(self, "types")
30084
+
30085
+ @types.setter
30086
+ def types(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
30087
+ pulumi.set(self, "types", value)
30088
+
30137
30089
  @_builtins.property
30138
30090
  @pulumi.getter
30139
30091
  def wheres(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
@@ -31230,6 +31182,231 @@ class ObservatoryScheduledTestTestRegionArgs:
31230
31182
  pulumi.set(self, "value", value)
31231
31183
 
31232
31184
 
31185
+ if not MYPY:
31186
+ class OrganizationMetaArgsDict(TypedDict):
31187
+ flags: NotRequired[pulumi.Input['OrganizationMetaFlagsArgsDict']]
31188
+ """
31189
+ Enable features for Organizations.
31190
+ """
31191
+ managed_by: NotRequired[pulumi.Input[_builtins.str]]
31192
+ elif False:
31193
+ OrganizationMetaArgsDict: TypeAlias = Mapping[str, Any]
31194
+
31195
+ @pulumi.input_type
31196
+ class OrganizationMetaArgs:
31197
+ def __init__(__self__, *,
31198
+ flags: Optional[pulumi.Input['OrganizationMetaFlagsArgs']] = None,
31199
+ managed_by: Optional[pulumi.Input[_builtins.str]] = None):
31200
+ """
31201
+ :param pulumi.Input['OrganizationMetaFlagsArgs'] flags: Enable features for Organizations.
31202
+ """
31203
+ if flags is not None:
31204
+ pulumi.set(__self__, "flags", flags)
31205
+ if managed_by is not None:
31206
+ pulumi.set(__self__, "managed_by", managed_by)
31207
+
31208
+ @_builtins.property
31209
+ @pulumi.getter
31210
+ def flags(self) -> Optional[pulumi.Input['OrganizationMetaFlagsArgs']]:
31211
+ """
31212
+ Enable features for Organizations.
31213
+ """
31214
+ return pulumi.get(self, "flags")
31215
+
31216
+ @flags.setter
31217
+ def flags(self, value: Optional[pulumi.Input['OrganizationMetaFlagsArgs']]):
31218
+ pulumi.set(self, "flags", value)
31219
+
31220
+ @_builtins.property
31221
+ @pulumi.getter(name="managedBy")
31222
+ def managed_by(self) -> Optional[pulumi.Input[_builtins.str]]:
31223
+ return pulumi.get(self, "managed_by")
31224
+
31225
+ @managed_by.setter
31226
+ def managed_by(self, value: Optional[pulumi.Input[_builtins.str]]):
31227
+ pulumi.set(self, "managed_by", value)
31228
+
31229
+
31230
+ if not MYPY:
31231
+ class OrganizationMetaFlagsArgsDict(TypedDict):
31232
+ account_creation: NotRequired[pulumi.Input[_builtins.str]]
31233
+ account_deletion: NotRequired[pulumi.Input[_builtins.str]]
31234
+ account_migration: NotRequired[pulumi.Input[_builtins.str]]
31235
+ account_mobility: NotRequired[pulumi.Input[_builtins.str]]
31236
+ sub_org_creation: NotRequired[pulumi.Input[_builtins.str]]
31237
+ elif False:
31238
+ OrganizationMetaFlagsArgsDict: TypeAlias = Mapping[str, Any]
31239
+
31240
+ @pulumi.input_type
31241
+ class OrganizationMetaFlagsArgs:
31242
+ def __init__(__self__, *,
31243
+ account_creation: Optional[pulumi.Input[_builtins.str]] = None,
31244
+ account_deletion: Optional[pulumi.Input[_builtins.str]] = None,
31245
+ account_migration: Optional[pulumi.Input[_builtins.str]] = None,
31246
+ account_mobility: Optional[pulumi.Input[_builtins.str]] = None,
31247
+ sub_org_creation: Optional[pulumi.Input[_builtins.str]] = None):
31248
+ if account_creation is not None:
31249
+ pulumi.set(__self__, "account_creation", account_creation)
31250
+ if account_deletion is not None:
31251
+ pulumi.set(__self__, "account_deletion", account_deletion)
31252
+ if account_migration is not None:
31253
+ pulumi.set(__self__, "account_migration", account_migration)
31254
+ if account_mobility is not None:
31255
+ pulumi.set(__self__, "account_mobility", account_mobility)
31256
+ if sub_org_creation is not None:
31257
+ pulumi.set(__self__, "sub_org_creation", sub_org_creation)
31258
+
31259
+ @_builtins.property
31260
+ @pulumi.getter(name="accountCreation")
31261
+ def account_creation(self) -> Optional[pulumi.Input[_builtins.str]]:
31262
+ return pulumi.get(self, "account_creation")
31263
+
31264
+ @account_creation.setter
31265
+ def account_creation(self, value: Optional[pulumi.Input[_builtins.str]]):
31266
+ pulumi.set(self, "account_creation", value)
31267
+
31268
+ @_builtins.property
31269
+ @pulumi.getter(name="accountDeletion")
31270
+ def account_deletion(self) -> Optional[pulumi.Input[_builtins.str]]:
31271
+ return pulumi.get(self, "account_deletion")
31272
+
31273
+ @account_deletion.setter
31274
+ def account_deletion(self, value: Optional[pulumi.Input[_builtins.str]]):
31275
+ pulumi.set(self, "account_deletion", value)
31276
+
31277
+ @_builtins.property
31278
+ @pulumi.getter(name="accountMigration")
31279
+ def account_migration(self) -> Optional[pulumi.Input[_builtins.str]]:
31280
+ return pulumi.get(self, "account_migration")
31281
+
31282
+ @account_migration.setter
31283
+ def account_migration(self, value: Optional[pulumi.Input[_builtins.str]]):
31284
+ pulumi.set(self, "account_migration", value)
31285
+
31286
+ @_builtins.property
31287
+ @pulumi.getter(name="accountMobility")
31288
+ def account_mobility(self) -> Optional[pulumi.Input[_builtins.str]]:
31289
+ return pulumi.get(self, "account_mobility")
31290
+
31291
+ @account_mobility.setter
31292
+ def account_mobility(self, value: Optional[pulumi.Input[_builtins.str]]):
31293
+ pulumi.set(self, "account_mobility", value)
31294
+
31295
+ @_builtins.property
31296
+ @pulumi.getter(name="subOrgCreation")
31297
+ def sub_org_creation(self) -> Optional[pulumi.Input[_builtins.str]]:
31298
+ return pulumi.get(self, "sub_org_creation")
31299
+
31300
+ @sub_org_creation.setter
31301
+ def sub_org_creation(self, value: Optional[pulumi.Input[_builtins.str]]):
31302
+ pulumi.set(self, "sub_org_creation", value)
31303
+
31304
+
31305
+ if not MYPY:
31306
+ class OrganizationParentArgsDict(TypedDict):
31307
+ id: pulumi.Input[_builtins.str]
31308
+ name: NotRequired[pulumi.Input[_builtins.str]]
31309
+ elif False:
31310
+ OrganizationParentArgsDict: TypeAlias = Mapping[str, Any]
31311
+
31312
+ @pulumi.input_type
31313
+ class OrganizationParentArgs:
31314
+ def __init__(__self__, *,
31315
+ id: pulumi.Input[_builtins.str],
31316
+ name: Optional[pulumi.Input[_builtins.str]] = None):
31317
+ pulumi.set(__self__, "id", id)
31318
+ if name is not None:
31319
+ pulumi.set(__self__, "name", name)
31320
+
31321
+ @_builtins.property
31322
+ @pulumi.getter
31323
+ def id(self) -> pulumi.Input[_builtins.str]:
31324
+ return pulumi.get(self, "id")
31325
+
31326
+ @id.setter
31327
+ def id(self, value: pulumi.Input[_builtins.str]):
31328
+ pulumi.set(self, "id", value)
31329
+
31330
+ @_builtins.property
31331
+ @pulumi.getter
31332
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
31333
+ return pulumi.get(self, "name")
31334
+
31335
+ @name.setter
31336
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
31337
+ pulumi.set(self, "name", value)
31338
+
31339
+
31340
+ if not MYPY:
31341
+ class OrganizationProfileArgsDict(TypedDict):
31342
+ business_address: pulumi.Input[_builtins.str]
31343
+ business_email: pulumi.Input[_builtins.str]
31344
+ business_name: pulumi.Input[_builtins.str]
31345
+ business_phone: pulumi.Input[_builtins.str]
31346
+ external_metadata: pulumi.Input[_builtins.str]
31347
+ elif False:
31348
+ OrganizationProfileArgsDict: TypeAlias = Mapping[str, Any]
31349
+
31350
+ @pulumi.input_type
31351
+ class OrganizationProfileArgs:
31352
+ def __init__(__self__, *,
31353
+ business_address: pulumi.Input[_builtins.str],
31354
+ business_email: pulumi.Input[_builtins.str],
31355
+ business_name: pulumi.Input[_builtins.str],
31356
+ business_phone: pulumi.Input[_builtins.str],
31357
+ external_metadata: pulumi.Input[_builtins.str]):
31358
+ pulumi.set(__self__, "business_address", business_address)
31359
+ pulumi.set(__self__, "business_email", business_email)
31360
+ pulumi.set(__self__, "business_name", business_name)
31361
+ pulumi.set(__self__, "business_phone", business_phone)
31362
+ pulumi.set(__self__, "external_metadata", external_metadata)
31363
+
31364
+ @_builtins.property
31365
+ @pulumi.getter(name="businessAddress")
31366
+ def business_address(self) -> pulumi.Input[_builtins.str]:
31367
+ return pulumi.get(self, "business_address")
31368
+
31369
+ @business_address.setter
31370
+ def business_address(self, value: pulumi.Input[_builtins.str]):
31371
+ pulumi.set(self, "business_address", value)
31372
+
31373
+ @_builtins.property
31374
+ @pulumi.getter(name="businessEmail")
31375
+ def business_email(self) -> pulumi.Input[_builtins.str]:
31376
+ return pulumi.get(self, "business_email")
31377
+
31378
+ @business_email.setter
31379
+ def business_email(self, value: pulumi.Input[_builtins.str]):
31380
+ pulumi.set(self, "business_email", value)
31381
+
31382
+ @_builtins.property
31383
+ @pulumi.getter(name="businessName")
31384
+ def business_name(self) -> pulumi.Input[_builtins.str]:
31385
+ return pulumi.get(self, "business_name")
31386
+
31387
+ @business_name.setter
31388
+ def business_name(self, value: pulumi.Input[_builtins.str]):
31389
+ pulumi.set(self, "business_name", value)
31390
+
31391
+ @_builtins.property
31392
+ @pulumi.getter(name="businessPhone")
31393
+ def business_phone(self) -> pulumi.Input[_builtins.str]:
31394
+ return pulumi.get(self, "business_phone")
31395
+
31396
+ @business_phone.setter
31397
+ def business_phone(self, value: pulumi.Input[_builtins.str]):
31398
+ pulumi.set(self, "business_phone", value)
31399
+
31400
+ @_builtins.property
31401
+ @pulumi.getter(name="externalMetadata")
31402
+ def external_metadata(self) -> pulumi.Input[_builtins.str]:
31403
+ return pulumi.get(self, "external_metadata")
31404
+
31405
+ @external_metadata.setter
31406
+ def external_metadata(self, value: pulumi.Input[_builtins.str]):
31407
+ pulumi.set(self, "external_metadata", value)
31408
+
31409
+
31233
31410
  if not MYPY:
31234
31411
  class PageRuleActionsArgsDict(TypedDict):
31235
31412
  always_use_https: NotRequired[pulumi.Input[_builtins.bool]]
@@ -32993,6 +33170,10 @@ if not MYPY:
32993
33170
  class PagesProjectCanonicalDeploymentSourceArgsDict(TypedDict):
32994
33171
  config: NotRequired[pulumi.Input['PagesProjectCanonicalDeploymentSourceConfigArgsDict']]
32995
33172
  type: NotRequired[pulumi.Input[_builtins.str]]
33173
+ """
33174
+ The source control management provider.
33175
+ Available values: "github", "gitlab".
33176
+ """
32996
33177
  elif False:
32997
33178
  PagesProjectCanonicalDeploymentSourceArgsDict: TypeAlias = Mapping[str, Any]
32998
33179
 
@@ -33001,6 +33182,10 @@ class PagesProjectCanonicalDeploymentSourceArgs:
33001
33182
  def __init__(__self__, *,
33002
33183
  config: Optional[pulumi.Input['PagesProjectCanonicalDeploymentSourceConfigArgs']] = None,
33003
33184
  type: Optional[pulumi.Input[_builtins.str]] = None):
33185
+ """
33186
+ :param pulumi.Input[_builtins.str] type: The source control management provider.
33187
+ Available values: "github", "gitlab".
33188
+ """
33004
33189
  if config is not None:
33005
33190
  pulumi.set(__self__, "config", config)
33006
33191
  if type is not None:
@@ -33018,6 +33203,10 @@ class PagesProjectCanonicalDeploymentSourceArgs:
33018
33203
  @_builtins.property
33019
33204
  @pulumi.getter
33020
33205
  def type(self) -> Optional[pulumi.Input[_builtins.str]]:
33206
+ """
33207
+ The source control management provider.
33208
+ Available values: "github", "gitlab".
33209
+ """
33021
33210
  return pulumi.get(self, "type")
33022
33211
 
33023
33212
  @type.setter
@@ -33028,19 +33217,51 @@ class PagesProjectCanonicalDeploymentSourceArgs:
33028
33217
  if not MYPY:
33029
33218
  class PagesProjectCanonicalDeploymentSourceConfigArgsDict(TypedDict):
33030
33219
  deployments_enabled: NotRequired[pulumi.Input[_builtins.bool]]
33220
+ """
33221
+ Whether to enable automatic deployments when pushing to the source repository.
33222
+ When disabled, no deployments (production or preview) will be triggered automatically.
33223
+ """
33031
33224
  owner: NotRequired[pulumi.Input[_builtins.str]]
33225
+ """
33226
+ The owner of the repository.
33227
+ """
33032
33228
  path_excludes: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
33229
+ """
33230
+ A list of paths that should be excluded from triggering a preview deployment. Wildcard syntax (`*`) is supported.
33231
+ """
33033
33232
  path_includes: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
33233
+ """
33234
+ A list of paths that should be watched to trigger a preview deployment. Wildcard syntax (`*`) is supported.
33235
+ """
33034
33236
  pr_comments_enabled: NotRequired[pulumi.Input[_builtins.bool]]
33237
+ """
33238
+ Whether to enable PR comments.
33239
+ """
33035
33240
  preview_branch_excludes: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
33241
+ """
33242
+ A list of branches that should not trigger a preview deployment. Wildcard syntax (`*`) is supported. Must be used with `preview_deployment_setting` set to `custom`.
33243
+ """
33036
33244
  preview_branch_includes: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
33245
+ """
33246
+ A list of branches that should trigger a preview deployment. Wildcard syntax (`*`) is supported. Must be used with `preview_deployment_setting` set to `custom`.
33247
+ """
33037
33248
  preview_deployment_setting: NotRequired[pulumi.Input[_builtins.str]]
33038
33249
  """
33250
+ Controls whether commits to preview branches trigger a preview deployment.
33039
33251
  Available values: "all", "none", "custom".
33040
33252
  """
33041
33253
  production_branch: NotRequired[pulumi.Input[_builtins.str]]
33254
+ """
33255
+ The production branch of the repository.
33256
+ """
33042
33257
  production_deployments_enabled: NotRequired[pulumi.Input[_builtins.bool]]
33258
+ """
33259
+ Whether to trigger a production deployment on commits to the production branch.
33260
+ """
33043
33261
  repo_name: NotRequired[pulumi.Input[_builtins.str]]
33262
+ """
33263
+ The name of the repository.
33264
+ """
33044
33265
  elif False:
33045
33266
  PagesProjectCanonicalDeploymentSourceConfigArgsDict: TypeAlias = Mapping[str, Any]
33046
33267
 
@@ -33059,8 +33280,23 @@ class PagesProjectCanonicalDeploymentSourceConfigArgs:
33059
33280
  production_deployments_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
33060
33281
  repo_name: Optional[pulumi.Input[_builtins.str]] = None):
33061
33282
  """
33062
- :param pulumi.Input[_builtins.str] preview_deployment_setting: Available values: "all", "none", "custom".
33283
+ :param pulumi.Input[_builtins.bool] deployments_enabled: Whether to enable automatic deployments when pushing to the source repository.
33284
+ When disabled, no deployments (production or preview) will be triggered automatically.
33285
+ :param pulumi.Input[_builtins.str] owner: The owner of the repository.
33286
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] path_excludes: A list of paths that should be excluded from triggering a preview deployment. Wildcard syntax (`*`) is supported.
33287
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] path_includes: A list of paths that should be watched to trigger a preview deployment. Wildcard syntax (`*`) is supported.
33288
+ :param pulumi.Input[_builtins.bool] pr_comments_enabled: Whether to enable PR comments.
33289
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] preview_branch_excludes: A list of branches that should not trigger a preview deployment. Wildcard syntax (`*`) is supported. Must be used with `preview_deployment_setting` set to `custom`.
33290
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] preview_branch_includes: A list of branches that should trigger a preview deployment. Wildcard syntax (`*`) is supported. Must be used with `preview_deployment_setting` set to `custom`.
33291
+ :param pulumi.Input[_builtins.str] preview_deployment_setting: Controls whether commits to preview branches trigger a preview deployment.
33292
+ Available values: "all", "none", "custom".
33293
+ :param pulumi.Input[_builtins.str] production_branch: The production branch of the repository.
33294
+ :param pulumi.Input[_builtins.bool] production_deployments_enabled: Whether to trigger a production deployment on commits to the production branch.
33295
+ :param pulumi.Input[_builtins.str] repo_name: The name of the repository.
33063
33296
  """
33297
+ if deployments_enabled is not None:
33298
+ warnings.warn("""Use `production_deployments_enabled` and `preview_deployment_setting` for more granular control.""", DeprecationWarning)
33299
+ pulumi.log.warn("""deployments_enabled is deprecated: Use `production_deployments_enabled` and `preview_deployment_setting` for more granular control.""")
33064
33300
  if deployments_enabled is not None:
33065
33301
  pulumi.set(__self__, "deployments_enabled", deployments_enabled)
33066
33302
  if owner is not None:
@@ -33086,7 +33322,12 @@ class PagesProjectCanonicalDeploymentSourceConfigArgs:
33086
33322
 
33087
33323
  @_builtins.property
33088
33324
  @pulumi.getter(name="deploymentsEnabled")
33325
+ @_utilities.deprecated("""Use `production_deployments_enabled` and `preview_deployment_setting` for more granular control.""")
33089
33326
  def deployments_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
33327
+ """
33328
+ Whether to enable automatic deployments when pushing to the source repository.
33329
+ When disabled, no deployments (production or preview) will be triggered automatically.
33330
+ """
33090
33331
  return pulumi.get(self, "deployments_enabled")
33091
33332
 
33092
33333
  @deployments_enabled.setter
@@ -33096,6 +33337,9 @@ class PagesProjectCanonicalDeploymentSourceConfigArgs:
33096
33337
  @_builtins.property
33097
33338
  @pulumi.getter
33098
33339
  def owner(self) -> Optional[pulumi.Input[_builtins.str]]:
33340
+ """
33341
+ The owner of the repository.
33342
+ """
33099
33343
  return pulumi.get(self, "owner")
33100
33344
 
33101
33345
  @owner.setter
@@ -33105,6 +33349,9 @@ class PagesProjectCanonicalDeploymentSourceConfigArgs:
33105
33349
  @_builtins.property
33106
33350
  @pulumi.getter(name="pathExcludes")
33107
33351
  def path_excludes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
33352
+ """
33353
+ A list of paths that should be excluded from triggering a preview deployment. Wildcard syntax (`*`) is supported.
33354
+ """
33108
33355
  return pulumi.get(self, "path_excludes")
33109
33356
 
33110
33357
  @path_excludes.setter
@@ -33114,6 +33361,9 @@ class PagesProjectCanonicalDeploymentSourceConfigArgs:
33114
33361
  @_builtins.property
33115
33362
  @pulumi.getter(name="pathIncludes")
33116
33363
  def path_includes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
33364
+ """
33365
+ A list of paths that should be watched to trigger a preview deployment. Wildcard syntax (`*`) is supported.
33366
+ """
33117
33367
  return pulumi.get(self, "path_includes")
33118
33368
 
33119
33369
  @path_includes.setter
@@ -33123,6 +33373,9 @@ class PagesProjectCanonicalDeploymentSourceConfigArgs:
33123
33373
  @_builtins.property
33124
33374
  @pulumi.getter(name="prCommentsEnabled")
33125
33375
  def pr_comments_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
33376
+ """
33377
+ Whether to enable PR comments.
33378
+ """
33126
33379
  return pulumi.get(self, "pr_comments_enabled")
33127
33380
 
33128
33381
  @pr_comments_enabled.setter
@@ -33132,6 +33385,9 @@ class PagesProjectCanonicalDeploymentSourceConfigArgs:
33132
33385
  @_builtins.property
33133
33386
  @pulumi.getter(name="previewBranchExcludes")
33134
33387
  def preview_branch_excludes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
33388
+ """
33389
+ A list of branches that should not trigger a preview deployment. Wildcard syntax (`*`) is supported. Must be used with `preview_deployment_setting` set to `custom`.
33390
+ """
33135
33391
  return pulumi.get(self, "preview_branch_excludes")
33136
33392
 
33137
33393
  @preview_branch_excludes.setter
@@ -33141,6 +33397,9 @@ class PagesProjectCanonicalDeploymentSourceConfigArgs:
33141
33397
  @_builtins.property
33142
33398
  @pulumi.getter(name="previewBranchIncludes")
33143
33399
  def preview_branch_includes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
33400
+ """
33401
+ A list of branches that should trigger a preview deployment. Wildcard syntax (`*`) is supported. Must be used with `preview_deployment_setting` set to `custom`.
33402
+ """
33144
33403
  return pulumi.get(self, "preview_branch_includes")
33145
33404
 
33146
33405
  @preview_branch_includes.setter
@@ -33151,6 +33410,7 @@ class PagesProjectCanonicalDeploymentSourceConfigArgs:
33151
33410
  @pulumi.getter(name="previewDeploymentSetting")
33152
33411
  def preview_deployment_setting(self) -> Optional[pulumi.Input[_builtins.str]]:
33153
33412
  """
33413
+ Controls whether commits to preview branches trigger a preview deployment.
33154
33414
  Available values: "all", "none", "custom".
33155
33415
  """
33156
33416
  return pulumi.get(self, "preview_deployment_setting")
@@ -33162,6 +33422,9 @@ class PagesProjectCanonicalDeploymentSourceConfigArgs:
33162
33422
  @_builtins.property
33163
33423
  @pulumi.getter(name="productionBranch")
33164
33424
  def production_branch(self) -> Optional[pulumi.Input[_builtins.str]]:
33425
+ """
33426
+ The production branch of the repository.
33427
+ """
33165
33428
  return pulumi.get(self, "production_branch")
33166
33429
 
33167
33430
  @production_branch.setter
@@ -33171,6 +33434,9 @@ class PagesProjectCanonicalDeploymentSourceConfigArgs:
33171
33434
  @_builtins.property
33172
33435
  @pulumi.getter(name="productionDeploymentsEnabled")
33173
33436
  def production_deployments_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
33437
+ """
33438
+ Whether to trigger a production deployment on commits to the production branch.
33439
+ """
33174
33440
  return pulumi.get(self, "production_deployments_enabled")
33175
33441
 
33176
33442
  @production_deployments_enabled.setter
@@ -33180,6 +33446,9 @@ class PagesProjectCanonicalDeploymentSourceConfigArgs:
33180
33446
  @_builtins.property
33181
33447
  @pulumi.getter(name="repoName")
33182
33448
  def repo_name(self) -> Optional[pulumi.Input[_builtins.str]]:
33449
+ """
33450
+ The name of the repository.
33451
+ """
33183
33452
  return pulumi.get(self, "repo_name")
33184
33453
 
33185
33454
  @repo_name.setter
@@ -33343,6 +33612,10 @@ if not MYPY:
33343
33612
  """
33344
33613
  Constellation bindings used for Pages Functions.
33345
33614
  """
33615
+ always_use_latest_compatibility_date: NotRequired[pulumi.Input[_builtins.bool]]
33616
+ """
33617
+ Whether to always use the latest compatibility date for Pages Functions.
33618
+ """
33346
33619
  analytics_engine_datasets: NotRequired[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewAnalyticsEngineDatasetsArgsDict']]]]
33347
33620
  """
33348
33621
  Analytics Engine bindings used for Pages Functions.
@@ -33351,6 +33624,10 @@ if not MYPY:
33351
33624
  """
33352
33625
  Browser bindings used for Pages Functions.
33353
33626
  """
33627
+ build_image_major_version: NotRequired[pulumi.Input[_builtins.int]]
33628
+ """
33629
+ The major version of the build image to use for Pages Functions.
33630
+ """
33354
33631
  compatibility_date: NotRequired[pulumi.Input[_builtins.str]]
33355
33632
  """
33356
33633
  Compatibility date used for Pages Functions.
@@ -33371,6 +33648,10 @@ if not MYPY:
33371
33648
  """
33372
33649
  Environment variables used for builds and Pages Functions.
33373
33650
  """
33651
+ fail_open: NotRequired[pulumi.Input[_builtins.bool]]
33652
+ """
33653
+ Whether to fail open when the deployment config cannot be applied.
33654
+ """
33374
33655
  hyperdrive_bindings: NotRequired[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewHyperdriveBindingsArgsDict']]]]
33375
33656
  """
33376
33657
  Hyperdrive bindings used for Pages Functions.
@@ -33379,6 +33660,10 @@ if not MYPY:
33379
33660
  """
33380
33661
  KV namespaces used for Pages Functions.
33381
33662
  """
33663
+ limits: NotRequired[pulumi.Input['PagesProjectDeploymentConfigsPreviewLimitsArgsDict']]
33664
+ """
33665
+ Limits for Pages Functions.
33666
+ """
33382
33667
  mtls_certificates: NotRequired[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewMtlsCertificatesArgsDict']]]]
33383
33668
  """
33384
33669
  mTLS bindings used for Pages Functions.
@@ -33399,10 +33684,19 @@ if not MYPY:
33399
33684
  """
33400
33685
  Services used for Pages Functions.
33401
33686
  """
33687
+ usage_model: NotRequired[pulumi.Input[_builtins.str]]
33688
+ """
33689
+ The usage model for Pages Functions.
33690
+ Available values: "standard", "bundled", "unbound".
33691
+ """
33402
33692
  vectorize_bindings: NotRequired[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewVectorizeBindingsArgsDict']]]]
33403
33693
  """
33404
33694
  Vectorize bindings used for Pages Functions.
33405
33695
  """
33696
+ wrangler_config_hash: NotRequired[pulumi.Input[_builtins.str]]
33697
+ """
33698
+ Hash of the Wrangler configuration used for the deployment.
33699
+ """
33406
33700
  elif False:
33407
33701
  PagesProjectDeploymentConfigsPreviewArgsDict: TypeAlias = Mapping[str, Any]
33408
33702
 
@@ -33410,45 +33704,62 @@ elif False:
33410
33704
  class PagesProjectDeploymentConfigsPreviewArgs:
33411
33705
  def __init__(__self__, *,
33412
33706
  ai_bindings: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewAiBindingsArgs']]]] = None,
33707
+ always_use_latest_compatibility_date: Optional[pulumi.Input[_builtins.bool]] = None,
33413
33708
  analytics_engine_datasets: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewAnalyticsEngineDatasetsArgs']]]] = None,
33414
33709
  browsers: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewBrowsersArgs']]]] = None,
33710
+ build_image_major_version: Optional[pulumi.Input[_builtins.int]] = None,
33415
33711
  compatibility_date: Optional[pulumi.Input[_builtins.str]] = None,
33416
33712
  compatibility_flags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
33417
33713
  d1_databases: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewD1DatabasesArgs']]]] = None,
33418
33714
  durable_object_namespaces: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewDurableObjectNamespacesArgs']]]] = None,
33419
33715
  env_vars: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewEnvVarsArgs']]]] = None,
33716
+ fail_open: Optional[pulumi.Input[_builtins.bool]] = None,
33420
33717
  hyperdrive_bindings: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewHyperdriveBindingsArgs']]]] = None,
33421
33718
  kv_namespaces: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewKvNamespacesArgs']]]] = None,
33719
+ limits: Optional[pulumi.Input['PagesProjectDeploymentConfigsPreviewLimitsArgs']] = None,
33422
33720
  mtls_certificates: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewMtlsCertificatesArgs']]]] = None,
33423
33721
  placement: Optional[pulumi.Input['PagesProjectDeploymentConfigsPreviewPlacementArgs']] = None,
33424
33722
  queue_producers: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewQueueProducersArgs']]]] = None,
33425
33723
  r2_buckets: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewR2BucketsArgs']]]] = None,
33426
33724
  services: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewServicesArgs']]]] = None,
33427
- vectorize_bindings: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewVectorizeBindingsArgs']]]] = None):
33725
+ usage_model: Optional[pulumi.Input[_builtins.str]] = None,
33726
+ vectorize_bindings: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewVectorizeBindingsArgs']]]] = None,
33727
+ wrangler_config_hash: Optional[pulumi.Input[_builtins.str]] = None):
33428
33728
  """
33429
33729
  :param pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewAiBindingsArgs']]] ai_bindings: Constellation bindings used for Pages Functions.
33730
+ :param pulumi.Input[_builtins.bool] always_use_latest_compatibility_date: Whether to always use the latest compatibility date for Pages Functions.
33430
33731
  :param pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewAnalyticsEngineDatasetsArgs']]] analytics_engine_datasets: Analytics Engine bindings used for Pages Functions.
33431
33732
  :param pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewBrowsersArgs']]] browsers: Browser bindings used for Pages Functions.
33733
+ :param pulumi.Input[_builtins.int] build_image_major_version: The major version of the build image to use for Pages Functions.
33432
33734
  :param pulumi.Input[_builtins.str] compatibility_date: Compatibility date used for Pages Functions.
33433
33735
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] compatibility_flags: Compatibility flags used for Pages Functions.
33434
33736
  :param pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewD1DatabasesArgs']]] d1_databases: D1 databases used for Pages Functions.
33435
33737
  :param pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewDurableObjectNamespacesArgs']]] durable_object_namespaces: Durable Object namespaces used for Pages Functions.
33436
33738
  :param pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewEnvVarsArgs']]] env_vars: Environment variables used for builds and Pages Functions.
33739
+ :param pulumi.Input[_builtins.bool] fail_open: Whether to fail open when the deployment config cannot be applied.
33437
33740
  :param pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewHyperdriveBindingsArgs']]] hyperdrive_bindings: Hyperdrive bindings used for Pages Functions.
33438
33741
  :param pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewKvNamespacesArgs']]] kv_namespaces: KV namespaces used for Pages Functions.
33742
+ :param pulumi.Input['PagesProjectDeploymentConfigsPreviewLimitsArgs'] limits: Limits for Pages Functions.
33439
33743
  :param pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewMtlsCertificatesArgs']]] mtls_certificates: mTLS bindings used for Pages Functions.
33440
33744
  :param pulumi.Input['PagesProjectDeploymentConfigsPreviewPlacementArgs'] placement: Placement setting used for Pages Functions.
33441
33745
  :param pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewQueueProducersArgs']]] queue_producers: Queue Producer bindings used for Pages Functions.
33442
33746
  :param pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewR2BucketsArgs']]] r2_buckets: R2 buckets used for Pages Functions.
33443
33747
  :param pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewServicesArgs']]] services: Services used for Pages Functions.
33748
+ :param pulumi.Input[_builtins.str] usage_model: The usage model for Pages Functions.
33749
+ Available values: "standard", "bundled", "unbound".
33444
33750
  :param pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewVectorizeBindingsArgs']]] vectorize_bindings: Vectorize bindings used for Pages Functions.
33751
+ :param pulumi.Input[_builtins.str] wrangler_config_hash: Hash of the Wrangler configuration used for the deployment.
33445
33752
  """
33446
33753
  if ai_bindings is not None:
33447
33754
  pulumi.set(__self__, "ai_bindings", ai_bindings)
33755
+ if always_use_latest_compatibility_date is not None:
33756
+ pulumi.set(__self__, "always_use_latest_compatibility_date", always_use_latest_compatibility_date)
33448
33757
  if analytics_engine_datasets is not None:
33449
33758
  pulumi.set(__self__, "analytics_engine_datasets", analytics_engine_datasets)
33450
33759
  if browsers is not None:
33451
33760
  pulumi.set(__self__, "browsers", browsers)
33761
+ if build_image_major_version is not None:
33762
+ pulumi.set(__self__, "build_image_major_version", build_image_major_version)
33452
33763
  if compatibility_date is not None:
33453
33764
  pulumi.set(__self__, "compatibility_date", compatibility_date)
33454
33765
  if compatibility_flags is not None:
@@ -33459,10 +33770,14 @@ class PagesProjectDeploymentConfigsPreviewArgs:
33459
33770
  pulumi.set(__self__, "durable_object_namespaces", durable_object_namespaces)
33460
33771
  if env_vars is not None:
33461
33772
  pulumi.set(__self__, "env_vars", env_vars)
33773
+ if fail_open is not None:
33774
+ pulumi.set(__self__, "fail_open", fail_open)
33462
33775
  if hyperdrive_bindings is not None:
33463
33776
  pulumi.set(__self__, "hyperdrive_bindings", hyperdrive_bindings)
33464
33777
  if kv_namespaces is not None:
33465
33778
  pulumi.set(__self__, "kv_namespaces", kv_namespaces)
33779
+ if limits is not None:
33780
+ pulumi.set(__self__, "limits", limits)
33466
33781
  if mtls_certificates is not None:
33467
33782
  pulumi.set(__self__, "mtls_certificates", mtls_certificates)
33468
33783
  if placement is not None:
@@ -33473,8 +33788,15 @@ class PagesProjectDeploymentConfigsPreviewArgs:
33473
33788
  pulumi.set(__self__, "r2_buckets", r2_buckets)
33474
33789
  if services is not None:
33475
33790
  pulumi.set(__self__, "services", services)
33791
+ if usage_model is not None:
33792
+ warnings.warn("""All new projects now use the Standard usage model.""", DeprecationWarning)
33793
+ pulumi.log.warn("""usage_model is deprecated: All new projects now use the Standard usage model.""")
33794
+ if usage_model is not None:
33795
+ pulumi.set(__self__, "usage_model", usage_model)
33476
33796
  if vectorize_bindings is not None:
33477
33797
  pulumi.set(__self__, "vectorize_bindings", vectorize_bindings)
33798
+ if wrangler_config_hash is not None:
33799
+ pulumi.set(__self__, "wrangler_config_hash", wrangler_config_hash)
33478
33800
 
33479
33801
  @_builtins.property
33480
33802
  @pulumi.getter(name="aiBindings")
@@ -33488,6 +33810,18 @@ class PagesProjectDeploymentConfigsPreviewArgs:
33488
33810
  def ai_bindings(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewAiBindingsArgs']]]]):
33489
33811
  pulumi.set(self, "ai_bindings", value)
33490
33812
 
33813
+ @_builtins.property
33814
+ @pulumi.getter(name="alwaysUseLatestCompatibilityDate")
33815
+ def always_use_latest_compatibility_date(self) -> Optional[pulumi.Input[_builtins.bool]]:
33816
+ """
33817
+ Whether to always use the latest compatibility date for Pages Functions.
33818
+ """
33819
+ return pulumi.get(self, "always_use_latest_compatibility_date")
33820
+
33821
+ @always_use_latest_compatibility_date.setter
33822
+ def always_use_latest_compatibility_date(self, value: Optional[pulumi.Input[_builtins.bool]]):
33823
+ pulumi.set(self, "always_use_latest_compatibility_date", value)
33824
+
33491
33825
  @_builtins.property
33492
33826
  @pulumi.getter(name="analyticsEngineDatasets")
33493
33827
  def analytics_engine_datasets(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewAnalyticsEngineDatasetsArgs']]]]:
@@ -33512,6 +33846,18 @@ class PagesProjectDeploymentConfigsPreviewArgs:
33512
33846
  def browsers(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewBrowsersArgs']]]]):
33513
33847
  pulumi.set(self, "browsers", value)
33514
33848
 
33849
+ @_builtins.property
33850
+ @pulumi.getter(name="buildImageMajorVersion")
33851
+ def build_image_major_version(self) -> Optional[pulumi.Input[_builtins.int]]:
33852
+ """
33853
+ The major version of the build image to use for Pages Functions.
33854
+ """
33855
+ return pulumi.get(self, "build_image_major_version")
33856
+
33857
+ @build_image_major_version.setter
33858
+ def build_image_major_version(self, value: Optional[pulumi.Input[_builtins.int]]):
33859
+ pulumi.set(self, "build_image_major_version", value)
33860
+
33515
33861
  @_builtins.property
33516
33862
  @pulumi.getter(name="compatibilityDate")
33517
33863
  def compatibility_date(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -33572,6 +33918,18 @@ class PagesProjectDeploymentConfigsPreviewArgs:
33572
33918
  def env_vars(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewEnvVarsArgs']]]]):
33573
33919
  pulumi.set(self, "env_vars", value)
33574
33920
 
33921
+ @_builtins.property
33922
+ @pulumi.getter(name="failOpen")
33923
+ def fail_open(self) -> Optional[pulumi.Input[_builtins.bool]]:
33924
+ """
33925
+ Whether to fail open when the deployment config cannot be applied.
33926
+ """
33927
+ return pulumi.get(self, "fail_open")
33928
+
33929
+ @fail_open.setter
33930
+ def fail_open(self, value: Optional[pulumi.Input[_builtins.bool]]):
33931
+ pulumi.set(self, "fail_open", value)
33932
+
33575
33933
  @_builtins.property
33576
33934
  @pulumi.getter(name="hyperdriveBindings")
33577
33935
  def hyperdrive_bindings(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewHyperdriveBindingsArgs']]]]:
@@ -33596,6 +33954,18 @@ class PagesProjectDeploymentConfigsPreviewArgs:
33596
33954
  def kv_namespaces(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewKvNamespacesArgs']]]]):
33597
33955
  pulumi.set(self, "kv_namespaces", value)
33598
33956
 
33957
+ @_builtins.property
33958
+ @pulumi.getter
33959
+ def limits(self) -> Optional[pulumi.Input['PagesProjectDeploymentConfigsPreviewLimitsArgs']]:
33960
+ """
33961
+ Limits for Pages Functions.
33962
+ """
33963
+ return pulumi.get(self, "limits")
33964
+
33965
+ @limits.setter
33966
+ def limits(self, value: Optional[pulumi.Input['PagesProjectDeploymentConfigsPreviewLimitsArgs']]):
33967
+ pulumi.set(self, "limits", value)
33968
+
33599
33969
  @_builtins.property
33600
33970
  @pulumi.getter(name="mtlsCertificates")
33601
33971
  def mtls_certificates(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewMtlsCertificatesArgs']]]]:
@@ -33656,6 +34026,20 @@ class PagesProjectDeploymentConfigsPreviewArgs:
33656
34026
  def services(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewServicesArgs']]]]):
33657
34027
  pulumi.set(self, "services", value)
33658
34028
 
34029
+ @_builtins.property
34030
+ @pulumi.getter(name="usageModel")
34031
+ @_utilities.deprecated("""All new projects now use the Standard usage model.""")
34032
+ def usage_model(self) -> Optional[pulumi.Input[_builtins.str]]:
34033
+ """
34034
+ The usage model for Pages Functions.
34035
+ Available values: "standard", "bundled", "unbound".
34036
+ """
34037
+ return pulumi.get(self, "usage_model")
34038
+
34039
+ @usage_model.setter
34040
+ def usage_model(self, value: Optional[pulumi.Input[_builtins.str]]):
34041
+ pulumi.set(self, "usage_model", value)
34042
+
33659
34043
  @_builtins.property
33660
34044
  @pulumi.getter(name="vectorizeBindings")
33661
34045
  def vectorize_bindings(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewVectorizeBindingsArgs']]]]:
@@ -33668,6 +34052,18 @@ class PagesProjectDeploymentConfigsPreviewArgs:
33668
34052
  def vectorize_bindings(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsPreviewVectorizeBindingsArgs']]]]):
33669
34053
  pulumi.set(self, "vectorize_bindings", value)
33670
34054
 
34055
+ @_builtins.property
34056
+ @pulumi.getter(name="wranglerConfigHash")
34057
+ def wrangler_config_hash(self) -> Optional[pulumi.Input[_builtins.str]]:
34058
+ """
34059
+ Hash of the Wrangler configuration used for the deployment.
34060
+ """
34061
+ return pulumi.get(self, "wrangler_config_hash")
34062
+
34063
+ @wrangler_config_hash.setter
34064
+ def wrangler_config_hash(self, value: Optional[pulumi.Input[_builtins.str]]):
34065
+ pulumi.set(self, "wrangler_config_hash", value)
34066
+
33671
34067
 
33672
34068
  if not MYPY:
33673
34069
  class PagesProjectDeploymentConfigsPreviewAiBindingsArgsDict(TypedDict):
@@ -33905,6 +34301,38 @@ class PagesProjectDeploymentConfigsPreviewKvNamespacesArgs:
33905
34301
  pulumi.set(self, "namespace_id", value)
33906
34302
 
33907
34303
 
34304
+ if not MYPY:
34305
+ class PagesProjectDeploymentConfigsPreviewLimitsArgsDict(TypedDict):
34306
+ cpu_ms: NotRequired[pulumi.Input[_builtins.int]]
34307
+ """
34308
+ CPU time limit in milliseconds.
34309
+ """
34310
+ elif False:
34311
+ PagesProjectDeploymentConfigsPreviewLimitsArgsDict: TypeAlias = Mapping[str, Any]
34312
+
34313
+ @pulumi.input_type
34314
+ class PagesProjectDeploymentConfigsPreviewLimitsArgs:
34315
+ def __init__(__self__, *,
34316
+ cpu_ms: Optional[pulumi.Input[_builtins.int]] = None):
34317
+ """
34318
+ :param pulumi.Input[_builtins.int] cpu_ms: CPU time limit in milliseconds.
34319
+ """
34320
+ if cpu_ms is not None:
34321
+ pulumi.set(__self__, "cpu_ms", cpu_ms)
34322
+
34323
+ @_builtins.property
34324
+ @pulumi.getter(name="cpuMs")
34325
+ def cpu_ms(self) -> Optional[pulumi.Input[_builtins.int]]:
34326
+ """
34327
+ CPU time limit in milliseconds.
34328
+ """
34329
+ return pulumi.get(self, "cpu_ms")
34330
+
34331
+ @cpu_ms.setter
34332
+ def cpu_ms(self, value: Optional[pulumi.Input[_builtins.int]]):
34333
+ pulumi.set(self, "cpu_ms", value)
34334
+
34335
+
33908
34336
  if not MYPY:
33909
34337
  class PagesProjectDeploymentConfigsPreviewMtlsCertificatesArgsDict(TypedDict):
33910
34338
  certificate_id: NotRequired[pulumi.Input[_builtins.str]]
@@ -34145,6 +34573,10 @@ if not MYPY:
34145
34573
  """
34146
34574
  Constellation bindings used for Pages Functions.
34147
34575
  """
34576
+ always_use_latest_compatibility_date: NotRequired[pulumi.Input[_builtins.bool]]
34577
+ """
34578
+ Whether to always use the latest compatibility date for Pages Functions.
34579
+ """
34148
34580
  analytics_engine_datasets: NotRequired[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionAnalyticsEngineDatasetsArgsDict']]]]
34149
34581
  """
34150
34582
  Analytics Engine bindings used for Pages Functions.
@@ -34153,6 +34585,10 @@ if not MYPY:
34153
34585
  """
34154
34586
  Browser bindings used for Pages Functions.
34155
34587
  """
34588
+ build_image_major_version: NotRequired[pulumi.Input[_builtins.int]]
34589
+ """
34590
+ The major version of the build image to use for Pages Functions.
34591
+ """
34156
34592
  compatibility_date: NotRequired[pulumi.Input[_builtins.str]]
34157
34593
  """
34158
34594
  Compatibility date used for Pages Functions.
@@ -34173,6 +34609,10 @@ if not MYPY:
34173
34609
  """
34174
34610
  Environment variables used for builds and Pages Functions.
34175
34611
  """
34612
+ fail_open: NotRequired[pulumi.Input[_builtins.bool]]
34613
+ """
34614
+ Whether to fail open when the deployment config cannot be applied.
34615
+ """
34176
34616
  hyperdrive_bindings: NotRequired[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionHyperdriveBindingsArgsDict']]]]
34177
34617
  """
34178
34618
  Hyperdrive bindings used for Pages Functions.
@@ -34181,6 +34621,10 @@ if not MYPY:
34181
34621
  """
34182
34622
  KV namespaces used for Pages Functions.
34183
34623
  """
34624
+ limits: NotRequired[pulumi.Input['PagesProjectDeploymentConfigsProductionLimitsArgsDict']]
34625
+ """
34626
+ Limits for Pages Functions.
34627
+ """
34184
34628
  mtls_certificates: NotRequired[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionMtlsCertificatesArgsDict']]]]
34185
34629
  """
34186
34630
  mTLS bindings used for Pages Functions.
@@ -34201,10 +34645,19 @@ if not MYPY:
34201
34645
  """
34202
34646
  Services used for Pages Functions.
34203
34647
  """
34648
+ usage_model: NotRequired[pulumi.Input[_builtins.str]]
34649
+ """
34650
+ The usage model for Pages Functions.
34651
+ Available values: "standard", "bundled", "unbound".
34652
+ """
34204
34653
  vectorize_bindings: NotRequired[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionVectorizeBindingsArgsDict']]]]
34205
34654
  """
34206
34655
  Vectorize bindings used for Pages Functions.
34207
34656
  """
34657
+ wrangler_config_hash: NotRequired[pulumi.Input[_builtins.str]]
34658
+ """
34659
+ Hash of the Wrangler configuration used for the deployment.
34660
+ """
34208
34661
  elif False:
34209
34662
  PagesProjectDeploymentConfigsProductionArgsDict: TypeAlias = Mapping[str, Any]
34210
34663
 
@@ -34212,45 +34665,62 @@ elif False:
34212
34665
  class PagesProjectDeploymentConfigsProductionArgs:
34213
34666
  def __init__(__self__, *,
34214
34667
  ai_bindings: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionAiBindingsArgs']]]] = None,
34668
+ always_use_latest_compatibility_date: Optional[pulumi.Input[_builtins.bool]] = None,
34215
34669
  analytics_engine_datasets: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionAnalyticsEngineDatasetsArgs']]]] = None,
34216
34670
  browsers: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionBrowsersArgs']]]] = None,
34671
+ build_image_major_version: Optional[pulumi.Input[_builtins.int]] = None,
34217
34672
  compatibility_date: Optional[pulumi.Input[_builtins.str]] = None,
34218
34673
  compatibility_flags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
34219
34674
  d1_databases: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionD1DatabasesArgs']]]] = None,
34220
34675
  durable_object_namespaces: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionDurableObjectNamespacesArgs']]]] = None,
34221
34676
  env_vars: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionEnvVarsArgs']]]] = None,
34677
+ fail_open: Optional[pulumi.Input[_builtins.bool]] = None,
34222
34678
  hyperdrive_bindings: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionHyperdriveBindingsArgs']]]] = None,
34223
34679
  kv_namespaces: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionKvNamespacesArgs']]]] = None,
34680
+ limits: Optional[pulumi.Input['PagesProjectDeploymentConfigsProductionLimitsArgs']] = None,
34224
34681
  mtls_certificates: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionMtlsCertificatesArgs']]]] = None,
34225
34682
  placement: Optional[pulumi.Input['PagesProjectDeploymentConfigsProductionPlacementArgs']] = None,
34226
34683
  queue_producers: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionQueueProducersArgs']]]] = None,
34227
34684
  r2_buckets: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionR2BucketsArgs']]]] = None,
34228
34685
  services: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionServicesArgs']]]] = None,
34229
- vectorize_bindings: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionVectorizeBindingsArgs']]]] = None):
34686
+ usage_model: Optional[pulumi.Input[_builtins.str]] = None,
34687
+ vectorize_bindings: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionVectorizeBindingsArgs']]]] = None,
34688
+ wrangler_config_hash: Optional[pulumi.Input[_builtins.str]] = None):
34230
34689
  """
34231
34690
  :param pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionAiBindingsArgs']]] ai_bindings: Constellation bindings used for Pages Functions.
34691
+ :param pulumi.Input[_builtins.bool] always_use_latest_compatibility_date: Whether to always use the latest compatibility date for Pages Functions.
34232
34692
  :param pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionAnalyticsEngineDatasetsArgs']]] analytics_engine_datasets: Analytics Engine bindings used for Pages Functions.
34233
34693
  :param pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionBrowsersArgs']]] browsers: Browser bindings used for Pages Functions.
34694
+ :param pulumi.Input[_builtins.int] build_image_major_version: The major version of the build image to use for Pages Functions.
34234
34695
  :param pulumi.Input[_builtins.str] compatibility_date: Compatibility date used for Pages Functions.
34235
34696
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] compatibility_flags: Compatibility flags used for Pages Functions.
34236
34697
  :param pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionD1DatabasesArgs']]] d1_databases: D1 databases used for Pages Functions.
34237
34698
  :param pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionDurableObjectNamespacesArgs']]] durable_object_namespaces: Durable Object namespaces used for Pages Functions.
34238
34699
  :param pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionEnvVarsArgs']]] env_vars: Environment variables used for builds and Pages Functions.
34700
+ :param pulumi.Input[_builtins.bool] fail_open: Whether to fail open when the deployment config cannot be applied.
34239
34701
  :param pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionHyperdriveBindingsArgs']]] hyperdrive_bindings: Hyperdrive bindings used for Pages Functions.
34240
34702
  :param pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionKvNamespacesArgs']]] kv_namespaces: KV namespaces used for Pages Functions.
34703
+ :param pulumi.Input['PagesProjectDeploymentConfigsProductionLimitsArgs'] limits: Limits for Pages Functions.
34241
34704
  :param pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionMtlsCertificatesArgs']]] mtls_certificates: mTLS bindings used for Pages Functions.
34242
34705
  :param pulumi.Input['PagesProjectDeploymentConfigsProductionPlacementArgs'] placement: Placement setting used for Pages Functions.
34243
34706
  :param pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionQueueProducersArgs']]] queue_producers: Queue Producer bindings used for Pages Functions.
34244
34707
  :param pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionR2BucketsArgs']]] r2_buckets: R2 buckets used for Pages Functions.
34245
34708
  :param pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionServicesArgs']]] services: Services used for Pages Functions.
34709
+ :param pulumi.Input[_builtins.str] usage_model: The usage model for Pages Functions.
34710
+ Available values: "standard", "bundled", "unbound".
34246
34711
  :param pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionVectorizeBindingsArgs']]] vectorize_bindings: Vectorize bindings used for Pages Functions.
34712
+ :param pulumi.Input[_builtins.str] wrangler_config_hash: Hash of the Wrangler configuration used for the deployment.
34247
34713
  """
34248
34714
  if ai_bindings is not None:
34249
34715
  pulumi.set(__self__, "ai_bindings", ai_bindings)
34716
+ if always_use_latest_compatibility_date is not None:
34717
+ pulumi.set(__self__, "always_use_latest_compatibility_date", always_use_latest_compatibility_date)
34250
34718
  if analytics_engine_datasets is not None:
34251
34719
  pulumi.set(__self__, "analytics_engine_datasets", analytics_engine_datasets)
34252
34720
  if browsers is not None:
34253
34721
  pulumi.set(__self__, "browsers", browsers)
34722
+ if build_image_major_version is not None:
34723
+ pulumi.set(__self__, "build_image_major_version", build_image_major_version)
34254
34724
  if compatibility_date is not None:
34255
34725
  pulumi.set(__self__, "compatibility_date", compatibility_date)
34256
34726
  if compatibility_flags is not None:
@@ -34261,10 +34731,14 @@ class PagesProjectDeploymentConfigsProductionArgs:
34261
34731
  pulumi.set(__self__, "durable_object_namespaces", durable_object_namespaces)
34262
34732
  if env_vars is not None:
34263
34733
  pulumi.set(__self__, "env_vars", env_vars)
34734
+ if fail_open is not None:
34735
+ pulumi.set(__self__, "fail_open", fail_open)
34264
34736
  if hyperdrive_bindings is not None:
34265
34737
  pulumi.set(__self__, "hyperdrive_bindings", hyperdrive_bindings)
34266
34738
  if kv_namespaces is not None:
34267
34739
  pulumi.set(__self__, "kv_namespaces", kv_namespaces)
34740
+ if limits is not None:
34741
+ pulumi.set(__self__, "limits", limits)
34268
34742
  if mtls_certificates is not None:
34269
34743
  pulumi.set(__self__, "mtls_certificates", mtls_certificates)
34270
34744
  if placement is not None:
@@ -34275,8 +34749,15 @@ class PagesProjectDeploymentConfigsProductionArgs:
34275
34749
  pulumi.set(__self__, "r2_buckets", r2_buckets)
34276
34750
  if services is not None:
34277
34751
  pulumi.set(__self__, "services", services)
34752
+ if usage_model is not None:
34753
+ warnings.warn("""All new projects now use the Standard usage model.""", DeprecationWarning)
34754
+ pulumi.log.warn("""usage_model is deprecated: All new projects now use the Standard usage model.""")
34755
+ if usage_model is not None:
34756
+ pulumi.set(__self__, "usage_model", usage_model)
34278
34757
  if vectorize_bindings is not None:
34279
34758
  pulumi.set(__self__, "vectorize_bindings", vectorize_bindings)
34759
+ if wrangler_config_hash is not None:
34760
+ pulumi.set(__self__, "wrangler_config_hash", wrangler_config_hash)
34280
34761
 
34281
34762
  @_builtins.property
34282
34763
  @pulumi.getter(name="aiBindings")
@@ -34290,6 +34771,18 @@ class PagesProjectDeploymentConfigsProductionArgs:
34290
34771
  def ai_bindings(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionAiBindingsArgs']]]]):
34291
34772
  pulumi.set(self, "ai_bindings", value)
34292
34773
 
34774
+ @_builtins.property
34775
+ @pulumi.getter(name="alwaysUseLatestCompatibilityDate")
34776
+ def always_use_latest_compatibility_date(self) -> Optional[pulumi.Input[_builtins.bool]]:
34777
+ """
34778
+ Whether to always use the latest compatibility date for Pages Functions.
34779
+ """
34780
+ return pulumi.get(self, "always_use_latest_compatibility_date")
34781
+
34782
+ @always_use_latest_compatibility_date.setter
34783
+ def always_use_latest_compatibility_date(self, value: Optional[pulumi.Input[_builtins.bool]]):
34784
+ pulumi.set(self, "always_use_latest_compatibility_date", value)
34785
+
34293
34786
  @_builtins.property
34294
34787
  @pulumi.getter(name="analyticsEngineDatasets")
34295
34788
  def analytics_engine_datasets(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionAnalyticsEngineDatasetsArgs']]]]:
@@ -34314,6 +34807,18 @@ class PagesProjectDeploymentConfigsProductionArgs:
34314
34807
  def browsers(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionBrowsersArgs']]]]):
34315
34808
  pulumi.set(self, "browsers", value)
34316
34809
 
34810
+ @_builtins.property
34811
+ @pulumi.getter(name="buildImageMajorVersion")
34812
+ def build_image_major_version(self) -> Optional[pulumi.Input[_builtins.int]]:
34813
+ """
34814
+ The major version of the build image to use for Pages Functions.
34815
+ """
34816
+ return pulumi.get(self, "build_image_major_version")
34817
+
34818
+ @build_image_major_version.setter
34819
+ def build_image_major_version(self, value: Optional[pulumi.Input[_builtins.int]]):
34820
+ pulumi.set(self, "build_image_major_version", value)
34821
+
34317
34822
  @_builtins.property
34318
34823
  @pulumi.getter(name="compatibilityDate")
34319
34824
  def compatibility_date(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -34374,6 +34879,18 @@ class PagesProjectDeploymentConfigsProductionArgs:
34374
34879
  def env_vars(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionEnvVarsArgs']]]]):
34375
34880
  pulumi.set(self, "env_vars", value)
34376
34881
 
34882
+ @_builtins.property
34883
+ @pulumi.getter(name="failOpen")
34884
+ def fail_open(self) -> Optional[pulumi.Input[_builtins.bool]]:
34885
+ """
34886
+ Whether to fail open when the deployment config cannot be applied.
34887
+ """
34888
+ return pulumi.get(self, "fail_open")
34889
+
34890
+ @fail_open.setter
34891
+ def fail_open(self, value: Optional[pulumi.Input[_builtins.bool]]):
34892
+ pulumi.set(self, "fail_open", value)
34893
+
34377
34894
  @_builtins.property
34378
34895
  @pulumi.getter(name="hyperdriveBindings")
34379
34896
  def hyperdrive_bindings(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionHyperdriveBindingsArgs']]]]:
@@ -34398,6 +34915,18 @@ class PagesProjectDeploymentConfigsProductionArgs:
34398
34915
  def kv_namespaces(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionKvNamespacesArgs']]]]):
34399
34916
  pulumi.set(self, "kv_namespaces", value)
34400
34917
 
34918
+ @_builtins.property
34919
+ @pulumi.getter
34920
+ def limits(self) -> Optional[pulumi.Input['PagesProjectDeploymentConfigsProductionLimitsArgs']]:
34921
+ """
34922
+ Limits for Pages Functions.
34923
+ """
34924
+ return pulumi.get(self, "limits")
34925
+
34926
+ @limits.setter
34927
+ def limits(self, value: Optional[pulumi.Input['PagesProjectDeploymentConfigsProductionLimitsArgs']]):
34928
+ pulumi.set(self, "limits", value)
34929
+
34401
34930
  @_builtins.property
34402
34931
  @pulumi.getter(name="mtlsCertificates")
34403
34932
  def mtls_certificates(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionMtlsCertificatesArgs']]]]:
@@ -34458,6 +34987,20 @@ class PagesProjectDeploymentConfigsProductionArgs:
34458
34987
  def services(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionServicesArgs']]]]):
34459
34988
  pulumi.set(self, "services", value)
34460
34989
 
34990
+ @_builtins.property
34991
+ @pulumi.getter(name="usageModel")
34992
+ @_utilities.deprecated("""All new projects now use the Standard usage model.""")
34993
+ def usage_model(self) -> Optional[pulumi.Input[_builtins.str]]:
34994
+ """
34995
+ The usage model for Pages Functions.
34996
+ Available values: "standard", "bundled", "unbound".
34997
+ """
34998
+ return pulumi.get(self, "usage_model")
34999
+
35000
+ @usage_model.setter
35001
+ def usage_model(self, value: Optional[pulumi.Input[_builtins.str]]):
35002
+ pulumi.set(self, "usage_model", value)
35003
+
34461
35004
  @_builtins.property
34462
35005
  @pulumi.getter(name="vectorizeBindings")
34463
35006
  def vectorize_bindings(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionVectorizeBindingsArgs']]]]:
@@ -34470,6 +35013,18 @@ class PagesProjectDeploymentConfigsProductionArgs:
34470
35013
  def vectorize_bindings(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input['PagesProjectDeploymentConfigsProductionVectorizeBindingsArgs']]]]):
34471
35014
  pulumi.set(self, "vectorize_bindings", value)
34472
35015
 
35016
+ @_builtins.property
35017
+ @pulumi.getter(name="wranglerConfigHash")
35018
+ def wrangler_config_hash(self) -> Optional[pulumi.Input[_builtins.str]]:
35019
+ """
35020
+ Hash of the Wrangler configuration used for the deployment.
35021
+ """
35022
+ return pulumi.get(self, "wrangler_config_hash")
35023
+
35024
+ @wrangler_config_hash.setter
35025
+ def wrangler_config_hash(self, value: Optional[pulumi.Input[_builtins.str]]):
35026
+ pulumi.set(self, "wrangler_config_hash", value)
35027
+
34473
35028
 
34474
35029
  if not MYPY:
34475
35030
  class PagesProjectDeploymentConfigsProductionAiBindingsArgsDict(TypedDict):
@@ -34707,6 +35262,38 @@ class PagesProjectDeploymentConfigsProductionKvNamespacesArgs:
34707
35262
  pulumi.set(self, "namespace_id", value)
34708
35263
 
34709
35264
 
35265
+ if not MYPY:
35266
+ class PagesProjectDeploymentConfigsProductionLimitsArgsDict(TypedDict):
35267
+ cpu_ms: NotRequired[pulumi.Input[_builtins.int]]
35268
+ """
35269
+ CPU time limit in milliseconds.
35270
+ """
35271
+ elif False:
35272
+ PagesProjectDeploymentConfigsProductionLimitsArgsDict: TypeAlias = Mapping[str, Any]
35273
+
35274
+ @pulumi.input_type
35275
+ class PagesProjectDeploymentConfigsProductionLimitsArgs:
35276
+ def __init__(__self__, *,
35277
+ cpu_ms: Optional[pulumi.Input[_builtins.int]] = None):
35278
+ """
35279
+ :param pulumi.Input[_builtins.int] cpu_ms: CPU time limit in milliseconds.
35280
+ """
35281
+ if cpu_ms is not None:
35282
+ pulumi.set(__self__, "cpu_ms", cpu_ms)
35283
+
35284
+ @_builtins.property
35285
+ @pulumi.getter(name="cpuMs")
35286
+ def cpu_ms(self) -> Optional[pulumi.Input[_builtins.int]]:
35287
+ """
35288
+ CPU time limit in milliseconds.
35289
+ """
35290
+ return pulumi.get(self, "cpu_ms")
35291
+
35292
+ @cpu_ms.setter
35293
+ def cpu_ms(self, value: Optional[pulumi.Input[_builtins.int]]):
35294
+ pulumi.set(self, "cpu_ms", value)
35295
+
35296
+
34710
35297
  if not MYPY:
34711
35298
  class PagesProjectDeploymentConfigsProductionMtlsCertificatesArgsDict(TypedDict):
34712
35299
  certificate_id: NotRequired[pulumi.Input[_builtins.str]]
@@ -35682,6 +36269,10 @@ if not MYPY:
35682
36269
  class PagesProjectLatestDeploymentSourceArgsDict(TypedDict):
35683
36270
  config: NotRequired[pulumi.Input['PagesProjectLatestDeploymentSourceConfigArgsDict']]
35684
36271
  type: NotRequired[pulumi.Input[_builtins.str]]
36272
+ """
36273
+ The source control management provider.
36274
+ Available values: "github", "gitlab".
36275
+ """
35685
36276
  elif False:
35686
36277
  PagesProjectLatestDeploymentSourceArgsDict: TypeAlias = Mapping[str, Any]
35687
36278
 
@@ -35690,6 +36281,10 @@ class PagesProjectLatestDeploymentSourceArgs:
35690
36281
  def __init__(__self__, *,
35691
36282
  config: Optional[pulumi.Input['PagesProjectLatestDeploymentSourceConfigArgs']] = None,
35692
36283
  type: Optional[pulumi.Input[_builtins.str]] = None):
36284
+ """
36285
+ :param pulumi.Input[_builtins.str] type: The source control management provider.
36286
+ Available values: "github", "gitlab".
36287
+ """
35693
36288
  if config is not None:
35694
36289
  pulumi.set(__self__, "config", config)
35695
36290
  if type is not None:
@@ -35707,6 +36302,10 @@ class PagesProjectLatestDeploymentSourceArgs:
35707
36302
  @_builtins.property
35708
36303
  @pulumi.getter
35709
36304
  def type(self) -> Optional[pulumi.Input[_builtins.str]]:
36305
+ """
36306
+ The source control management provider.
36307
+ Available values: "github", "gitlab".
36308
+ """
35710
36309
  return pulumi.get(self, "type")
35711
36310
 
35712
36311
  @type.setter
@@ -35717,19 +36316,51 @@ class PagesProjectLatestDeploymentSourceArgs:
35717
36316
  if not MYPY:
35718
36317
  class PagesProjectLatestDeploymentSourceConfigArgsDict(TypedDict):
35719
36318
  deployments_enabled: NotRequired[pulumi.Input[_builtins.bool]]
36319
+ """
36320
+ Whether to enable automatic deployments when pushing to the source repository.
36321
+ When disabled, no deployments (production or preview) will be triggered automatically.
36322
+ """
35720
36323
  owner: NotRequired[pulumi.Input[_builtins.str]]
36324
+ """
36325
+ The owner of the repository.
36326
+ """
35721
36327
  path_excludes: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
36328
+ """
36329
+ A list of paths that should be excluded from triggering a preview deployment. Wildcard syntax (`*`) is supported.
36330
+ """
35722
36331
  path_includes: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
36332
+ """
36333
+ A list of paths that should be watched to trigger a preview deployment. Wildcard syntax (`*`) is supported.
36334
+ """
35723
36335
  pr_comments_enabled: NotRequired[pulumi.Input[_builtins.bool]]
36336
+ """
36337
+ Whether to enable PR comments.
36338
+ """
35724
36339
  preview_branch_excludes: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
36340
+ """
36341
+ A list of branches that should not trigger a preview deployment. Wildcard syntax (`*`) is supported. Must be used with `preview_deployment_setting` set to `custom`.
36342
+ """
35725
36343
  preview_branch_includes: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
36344
+ """
36345
+ A list of branches that should trigger a preview deployment. Wildcard syntax (`*`) is supported. Must be used with `preview_deployment_setting` set to `custom`.
36346
+ """
35726
36347
  preview_deployment_setting: NotRequired[pulumi.Input[_builtins.str]]
35727
36348
  """
36349
+ Controls whether commits to preview branches trigger a preview deployment.
35728
36350
  Available values: "all", "none", "custom".
35729
36351
  """
35730
36352
  production_branch: NotRequired[pulumi.Input[_builtins.str]]
36353
+ """
36354
+ The production branch of the repository.
36355
+ """
35731
36356
  production_deployments_enabled: NotRequired[pulumi.Input[_builtins.bool]]
36357
+ """
36358
+ Whether to trigger a production deployment on commits to the production branch.
36359
+ """
35732
36360
  repo_name: NotRequired[pulumi.Input[_builtins.str]]
36361
+ """
36362
+ The name of the repository.
36363
+ """
35733
36364
  elif False:
35734
36365
  PagesProjectLatestDeploymentSourceConfigArgsDict: TypeAlias = Mapping[str, Any]
35735
36366
 
@@ -35748,8 +36379,23 @@ class PagesProjectLatestDeploymentSourceConfigArgs:
35748
36379
  production_deployments_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
35749
36380
  repo_name: Optional[pulumi.Input[_builtins.str]] = None):
35750
36381
  """
35751
- :param pulumi.Input[_builtins.str] preview_deployment_setting: Available values: "all", "none", "custom".
36382
+ :param pulumi.Input[_builtins.bool] deployments_enabled: Whether to enable automatic deployments when pushing to the source repository.
36383
+ When disabled, no deployments (production or preview) will be triggered automatically.
36384
+ :param pulumi.Input[_builtins.str] owner: The owner of the repository.
36385
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] path_excludes: A list of paths that should be excluded from triggering a preview deployment. Wildcard syntax (`*`) is supported.
36386
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] path_includes: A list of paths that should be watched to trigger a preview deployment. Wildcard syntax (`*`) is supported.
36387
+ :param pulumi.Input[_builtins.bool] pr_comments_enabled: Whether to enable PR comments.
36388
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] preview_branch_excludes: A list of branches that should not trigger a preview deployment. Wildcard syntax (`*`) is supported. Must be used with `preview_deployment_setting` set to `custom`.
36389
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] preview_branch_includes: A list of branches that should trigger a preview deployment. Wildcard syntax (`*`) is supported. Must be used with `preview_deployment_setting` set to `custom`.
36390
+ :param pulumi.Input[_builtins.str] preview_deployment_setting: Controls whether commits to preview branches trigger a preview deployment.
36391
+ Available values: "all", "none", "custom".
36392
+ :param pulumi.Input[_builtins.str] production_branch: The production branch of the repository.
36393
+ :param pulumi.Input[_builtins.bool] production_deployments_enabled: Whether to trigger a production deployment on commits to the production branch.
36394
+ :param pulumi.Input[_builtins.str] repo_name: The name of the repository.
35752
36395
  """
36396
+ if deployments_enabled is not None:
36397
+ warnings.warn("""Use `production_deployments_enabled` and `preview_deployment_setting` for more granular control.""", DeprecationWarning)
36398
+ pulumi.log.warn("""deployments_enabled is deprecated: Use `production_deployments_enabled` and `preview_deployment_setting` for more granular control.""")
35753
36399
  if deployments_enabled is not None:
35754
36400
  pulumi.set(__self__, "deployments_enabled", deployments_enabled)
35755
36401
  if owner is not None:
@@ -35775,7 +36421,12 @@ class PagesProjectLatestDeploymentSourceConfigArgs:
35775
36421
 
35776
36422
  @_builtins.property
35777
36423
  @pulumi.getter(name="deploymentsEnabled")
36424
+ @_utilities.deprecated("""Use `production_deployments_enabled` and `preview_deployment_setting` for more granular control.""")
35778
36425
  def deployments_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
36426
+ """
36427
+ Whether to enable automatic deployments when pushing to the source repository.
36428
+ When disabled, no deployments (production or preview) will be triggered automatically.
36429
+ """
35779
36430
  return pulumi.get(self, "deployments_enabled")
35780
36431
 
35781
36432
  @deployments_enabled.setter
@@ -35785,6 +36436,9 @@ class PagesProjectLatestDeploymentSourceConfigArgs:
35785
36436
  @_builtins.property
35786
36437
  @pulumi.getter
35787
36438
  def owner(self) -> Optional[pulumi.Input[_builtins.str]]:
36439
+ """
36440
+ The owner of the repository.
36441
+ """
35788
36442
  return pulumi.get(self, "owner")
35789
36443
 
35790
36444
  @owner.setter
@@ -35794,6 +36448,9 @@ class PagesProjectLatestDeploymentSourceConfigArgs:
35794
36448
  @_builtins.property
35795
36449
  @pulumi.getter(name="pathExcludes")
35796
36450
  def path_excludes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
36451
+ """
36452
+ A list of paths that should be excluded from triggering a preview deployment. Wildcard syntax (`*`) is supported.
36453
+ """
35797
36454
  return pulumi.get(self, "path_excludes")
35798
36455
 
35799
36456
  @path_excludes.setter
@@ -35803,6 +36460,9 @@ class PagesProjectLatestDeploymentSourceConfigArgs:
35803
36460
  @_builtins.property
35804
36461
  @pulumi.getter(name="pathIncludes")
35805
36462
  def path_includes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
36463
+ """
36464
+ A list of paths that should be watched to trigger a preview deployment. Wildcard syntax (`*`) is supported.
36465
+ """
35806
36466
  return pulumi.get(self, "path_includes")
35807
36467
 
35808
36468
  @path_includes.setter
@@ -35812,6 +36472,9 @@ class PagesProjectLatestDeploymentSourceConfigArgs:
35812
36472
  @_builtins.property
35813
36473
  @pulumi.getter(name="prCommentsEnabled")
35814
36474
  def pr_comments_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
36475
+ """
36476
+ Whether to enable PR comments.
36477
+ """
35815
36478
  return pulumi.get(self, "pr_comments_enabled")
35816
36479
 
35817
36480
  @pr_comments_enabled.setter
@@ -35821,6 +36484,9 @@ class PagesProjectLatestDeploymentSourceConfigArgs:
35821
36484
  @_builtins.property
35822
36485
  @pulumi.getter(name="previewBranchExcludes")
35823
36486
  def preview_branch_excludes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
36487
+ """
36488
+ A list of branches that should not trigger a preview deployment. Wildcard syntax (`*`) is supported. Must be used with `preview_deployment_setting` set to `custom`.
36489
+ """
35824
36490
  return pulumi.get(self, "preview_branch_excludes")
35825
36491
 
35826
36492
  @preview_branch_excludes.setter
@@ -35830,6 +36496,9 @@ class PagesProjectLatestDeploymentSourceConfigArgs:
35830
36496
  @_builtins.property
35831
36497
  @pulumi.getter(name="previewBranchIncludes")
35832
36498
  def preview_branch_includes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
36499
+ """
36500
+ A list of branches that should trigger a preview deployment. Wildcard syntax (`*`) is supported. Must be used with `preview_deployment_setting` set to `custom`.
36501
+ """
35833
36502
  return pulumi.get(self, "preview_branch_includes")
35834
36503
 
35835
36504
  @preview_branch_includes.setter
@@ -35840,6 +36509,7 @@ class PagesProjectLatestDeploymentSourceConfigArgs:
35840
36509
  @pulumi.getter(name="previewDeploymentSetting")
35841
36510
  def preview_deployment_setting(self) -> Optional[pulumi.Input[_builtins.str]]:
35842
36511
  """
36512
+ Controls whether commits to preview branches trigger a preview deployment.
35843
36513
  Available values: "all", "none", "custom".
35844
36514
  """
35845
36515
  return pulumi.get(self, "preview_deployment_setting")
@@ -35851,6 +36521,9 @@ class PagesProjectLatestDeploymentSourceConfigArgs:
35851
36521
  @_builtins.property
35852
36522
  @pulumi.getter(name="productionBranch")
35853
36523
  def production_branch(self) -> Optional[pulumi.Input[_builtins.str]]:
36524
+ """
36525
+ The production branch of the repository.
36526
+ """
35854
36527
  return pulumi.get(self, "production_branch")
35855
36528
 
35856
36529
  @production_branch.setter
@@ -35860,6 +36533,9 @@ class PagesProjectLatestDeploymentSourceConfigArgs:
35860
36533
  @_builtins.property
35861
36534
  @pulumi.getter(name="productionDeploymentsEnabled")
35862
36535
  def production_deployments_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
36536
+ """
36537
+ Whether to trigger a production deployment on commits to the production branch.
36538
+ """
35863
36539
  return pulumi.get(self, "production_deployments_enabled")
35864
36540
 
35865
36541
  @production_deployments_enabled.setter
@@ -35869,6 +36545,9 @@ class PagesProjectLatestDeploymentSourceConfigArgs:
35869
36545
  @_builtins.property
35870
36546
  @pulumi.getter(name="repoName")
35871
36547
  def repo_name(self) -> Optional[pulumi.Input[_builtins.str]]:
36548
+ """
36549
+ The name of the repository.
36550
+ """
35872
36551
  return pulumi.get(self, "repo_name")
35873
36552
 
35874
36553
  @repo_name.setter
@@ -35978,6 +36657,10 @@ if not MYPY:
35978
36657
  class PagesProjectSourceArgsDict(TypedDict):
35979
36658
  config: NotRequired[pulumi.Input['PagesProjectSourceConfigArgsDict']]
35980
36659
  type: NotRequired[pulumi.Input[_builtins.str]]
36660
+ """
36661
+ The source control management provider.
36662
+ Available values: "github", "gitlab".
36663
+ """
35981
36664
  elif False:
35982
36665
  PagesProjectSourceArgsDict: TypeAlias = Mapping[str, Any]
35983
36666
 
@@ -35986,6 +36669,10 @@ class PagesProjectSourceArgs:
35986
36669
  def __init__(__self__, *,
35987
36670
  config: Optional[pulumi.Input['PagesProjectSourceConfigArgs']] = None,
35988
36671
  type: Optional[pulumi.Input[_builtins.str]] = None):
36672
+ """
36673
+ :param pulumi.Input[_builtins.str] type: The source control management provider.
36674
+ Available values: "github", "gitlab".
36675
+ """
35989
36676
  if config is not None:
35990
36677
  pulumi.set(__self__, "config", config)
35991
36678
  if type is not None:
@@ -36003,6 +36690,10 @@ class PagesProjectSourceArgs:
36003
36690
  @_builtins.property
36004
36691
  @pulumi.getter
36005
36692
  def type(self) -> Optional[pulumi.Input[_builtins.str]]:
36693
+ """
36694
+ The source control management provider.
36695
+ Available values: "github", "gitlab".
36696
+ """
36006
36697
  return pulumi.get(self, "type")
36007
36698
 
36008
36699
  @type.setter
@@ -36013,19 +36704,51 @@ class PagesProjectSourceArgs:
36013
36704
  if not MYPY:
36014
36705
  class PagesProjectSourceConfigArgsDict(TypedDict):
36015
36706
  deployments_enabled: NotRequired[pulumi.Input[_builtins.bool]]
36707
+ """
36708
+ Whether to enable automatic deployments when pushing to the source repository.
36709
+ When disabled, no deployments (production or preview) will be triggered automatically.
36710
+ """
36016
36711
  owner: NotRequired[pulumi.Input[_builtins.str]]
36712
+ """
36713
+ The owner of the repository.
36714
+ """
36017
36715
  path_excludes: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
36716
+ """
36717
+ A list of paths that should be excluded from triggering a preview deployment. Wildcard syntax (`*`) is supported.
36718
+ """
36018
36719
  path_includes: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
36720
+ """
36721
+ A list of paths that should be watched to trigger a preview deployment. Wildcard syntax (`*`) is supported.
36722
+ """
36019
36723
  pr_comments_enabled: NotRequired[pulumi.Input[_builtins.bool]]
36724
+ """
36725
+ Whether to enable PR comments.
36726
+ """
36020
36727
  preview_branch_excludes: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
36728
+ """
36729
+ A list of branches that should not trigger a preview deployment. Wildcard syntax (`*`) is supported. Must be used with `preview_deployment_setting` set to `custom`.
36730
+ """
36021
36731
  preview_branch_includes: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
36732
+ """
36733
+ A list of branches that should trigger a preview deployment. Wildcard syntax (`*`) is supported. Must be used with `preview_deployment_setting` set to `custom`.
36734
+ """
36022
36735
  preview_deployment_setting: NotRequired[pulumi.Input[_builtins.str]]
36023
36736
  """
36737
+ Controls whether commits to preview branches trigger a preview deployment.
36024
36738
  Available values: "all", "none", "custom".
36025
36739
  """
36026
36740
  production_branch: NotRequired[pulumi.Input[_builtins.str]]
36741
+ """
36742
+ The production branch of the repository.
36743
+ """
36027
36744
  production_deployments_enabled: NotRequired[pulumi.Input[_builtins.bool]]
36745
+ """
36746
+ Whether to trigger a production deployment on commits to the production branch.
36747
+ """
36028
36748
  repo_name: NotRequired[pulumi.Input[_builtins.str]]
36749
+ """
36750
+ The name of the repository.
36751
+ """
36029
36752
  elif False:
36030
36753
  PagesProjectSourceConfigArgsDict: TypeAlias = Mapping[str, Any]
36031
36754
 
@@ -36044,8 +36767,23 @@ class PagesProjectSourceConfigArgs:
36044
36767
  production_deployments_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
36045
36768
  repo_name: Optional[pulumi.Input[_builtins.str]] = None):
36046
36769
  """
36047
- :param pulumi.Input[_builtins.str] preview_deployment_setting: Available values: "all", "none", "custom".
36770
+ :param pulumi.Input[_builtins.bool] deployments_enabled: Whether to enable automatic deployments when pushing to the source repository.
36771
+ When disabled, no deployments (production or preview) will be triggered automatically.
36772
+ :param pulumi.Input[_builtins.str] owner: The owner of the repository.
36773
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] path_excludes: A list of paths that should be excluded from triggering a preview deployment. Wildcard syntax (`*`) is supported.
36774
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] path_includes: A list of paths that should be watched to trigger a preview deployment. Wildcard syntax (`*`) is supported.
36775
+ :param pulumi.Input[_builtins.bool] pr_comments_enabled: Whether to enable PR comments.
36776
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] preview_branch_excludes: A list of branches that should not trigger a preview deployment. Wildcard syntax (`*`) is supported. Must be used with `preview_deployment_setting` set to `custom`.
36777
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] preview_branch_includes: A list of branches that should trigger a preview deployment. Wildcard syntax (`*`) is supported. Must be used with `preview_deployment_setting` set to `custom`.
36778
+ :param pulumi.Input[_builtins.str] preview_deployment_setting: Controls whether commits to preview branches trigger a preview deployment.
36779
+ Available values: "all", "none", "custom".
36780
+ :param pulumi.Input[_builtins.str] production_branch: The production branch of the repository.
36781
+ :param pulumi.Input[_builtins.bool] production_deployments_enabled: Whether to trigger a production deployment on commits to the production branch.
36782
+ :param pulumi.Input[_builtins.str] repo_name: The name of the repository.
36048
36783
  """
36784
+ if deployments_enabled is not None:
36785
+ warnings.warn("""Use `production_deployments_enabled` and `preview_deployment_setting` for more granular control.""", DeprecationWarning)
36786
+ pulumi.log.warn("""deployments_enabled is deprecated: Use `production_deployments_enabled` and `preview_deployment_setting` for more granular control.""")
36049
36787
  if deployments_enabled is not None:
36050
36788
  pulumi.set(__self__, "deployments_enabled", deployments_enabled)
36051
36789
  if owner is not None:
@@ -36071,7 +36809,12 @@ class PagesProjectSourceConfigArgs:
36071
36809
 
36072
36810
  @_builtins.property
36073
36811
  @pulumi.getter(name="deploymentsEnabled")
36812
+ @_utilities.deprecated("""Use `production_deployments_enabled` and `preview_deployment_setting` for more granular control.""")
36074
36813
  def deployments_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
36814
+ """
36815
+ Whether to enable automatic deployments when pushing to the source repository.
36816
+ When disabled, no deployments (production or preview) will be triggered automatically.
36817
+ """
36075
36818
  return pulumi.get(self, "deployments_enabled")
36076
36819
 
36077
36820
  @deployments_enabled.setter
@@ -36081,6 +36824,9 @@ class PagesProjectSourceConfigArgs:
36081
36824
  @_builtins.property
36082
36825
  @pulumi.getter
36083
36826
  def owner(self) -> Optional[pulumi.Input[_builtins.str]]:
36827
+ """
36828
+ The owner of the repository.
36829
+ """
36084
36830
  return pulumi.get(self, "owner")
36085
36831
 
36086
36832
  @owner.setter
@@ -36090,6 +36836,9 @@ class PagesProjectSourceConfigArgs:
36090
36836
  @_builtins.property
36091
36837
  @pulumi.getter(name="pathExcludes")
36092
36838
  def path_excludes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
36839
+ """
36840
+ A list of paths that should be excluded from triggering a preview deployment. Wildcard syntax (`*`) is supported.
36841
+ """
36093
36842
  return pulumi.get(self, "path_excludes")
36094
36843
 
36095
36844
  @path_excludes.setter
@@ -36099,6 +36848,9 @@ class PagesProjectSourceConfigArgs:
36099
36848
  @_builtins.property
36100
36849
  @pulumi.getter(name="pathIncludes")
36101
36850
  def path_includes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
36851
+ """
36852
+ A list of paths that should be watched to trigger a preview deployment. Wildcard syntax (`*`) is supported.
36853
+ """
36102
36854
  return pulumi.get(self, "path_includes")
36103
36855
 
36104
36856
  @path_includes.setter
@@ -36108,6 +36860,9 @@ class PagesProjectSourceConfigArgs:
36108
36860
  @_builtins.property
36109
36861
  @pulumi.getter(name="prCommentsEnabled")
36110
36862
  def pr_comments_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
36863
+ """
36864
+ Whether to enable PR comments.
36865
+ """
36111
36866
  return pulumi.get(self, "pr_comments_enabled")
36112
36867
 
36113
36868
  @pr_comments_enabled.setter
@@ -36117,6 +36872,9 @@ class PagesProjectSourceConfigArgs:
36117
36872
  @_builtins.property
36118
36873
  @pulumi.getter(name="previewBranchExcludes")
36119
36874
  def preview_branch_excludes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
36875
+ """
36876
+ A list of branches that should not trigger a preview deployment. Wildcard syntax (`*`) is supported. Must be used with `preview_deployment_setting` set to `custom`.
36877
+ """
36120
36878
  return pulumi.get(self, "preview_branch_excludes")
36121
36879
 
36122
36880
  @preview_branch_excludes.setter
@@ -36126,6 +36884,9 @@ class PagesProjectSourceConfigArgs:
36126
36884
  @_builtins.property
36127
36885
  @pulumi.getter(name="previewBranchIncludes")
36128
36886
  def preview_branch_includes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
36887
+ """
36888
+ A list of branches that should trigger a preview deployment. Wildcard syntax (`*`) is supported. Must be used with `preview_deployment_setting` set to `custom`.
36889
+ """
36129
36890
  return pulumi.get(self, "preview_branch_includes")
36130
36891
 
36131
36892
  @preview_branch_includes.setter
@@ -36136,6 +36897,7 @@ class PagesProjectSourceConfigArgs:
36136
36897
  @pulumi.getter(name="previewDeploymentSetting")
36137
36898
  def preview_deployment_setting(self) -> Optional[pulumi.Input[_builtins.str]]:
36138
36899
  """
36900
+ Controls whether commits to preview branches trigger a preview deployment.
36139
36901
  Available values: "all", "none", "custom".
36140
36902
  """
36141
36903
  return pulumi.get(self, "preview_deployment_setting")
@@ -36147,6 +36909,9 @@ class PagesProjectSourceConfigArgs:
36147
36909
  @_builtins.property
36148
36910
  @pulumi.getter(name="productionBranch")
36149
36911
  def production_branch(self) -> Optional[pulumi.Input[_builtins.str]]:
36912
+ """
36913
+ The production branch of the repository.
36914
+ """
36150
36915
  return pulumi.get(self, "production_branch")
36151
36916
 
36152
36917
  @production_branch.setter
@@ -36156,6 +36921,9 @@ class PagesProjectSourceConfigArgs:
36156
36921
  @_builtins.property
36157
36922
  @pulumi.getter(name="productionDeploymentsEnabled")
36158
36923
  def production_deployments_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
36924
+ """
36925
+ Whether to trigger a production deployment on commits to the production branch.
36926
+ """
36159
36927
  return pulumi.get(self, "production_deployments_enabled")
36160
36928
 
36161
36929
  @production_deployments_enabled.setter
@@ -36165,6 +36933,9 @@ class PagesProjectSourceConfigArgs:
36165
36933
  @_builtins.property
36166
36934
  @pulumi.getter(name="repoName")
36167
36935
  def repo_name(self) -> Optional[pulumi.Input[_builtins.str]]:
36936
+ """
36937
+ The name of the repository.
36938
+ """
36168
36939
  return pulumi.get(self, "repo_name")
36169
36940
 
36170
36941
  @repo_name.setter
@@ -44100,7 +44871,7 @@ if not MYPY:
44100
44871
  """
44101
44872
  extended_email_matching: NotRequired[pulumi.Input['TeamsAccountSettingsExtendedEmailMatchingArgsDict']]
44102
44873
  """
44103
- Specify user email settings for the firewall policies. When this is enabled, we standardize the email addresses in the identity part of the rule, so that they match the extended email variants in the firewall policies. When this setting is turned off, the email addresses in the identity part of the rule will be matched exactly as provided. If your email has `.` or `+` modifiers, you should enable this setting.
44874
+ Configures user email settings for firewall policies. When you enable this, the system standardizes email addresses in the identity portion of the rule to match extended email variants in firewall policies. When you disable this setting, the system matches email addresses exactly as you provide them. Enable this setting if your email uses `.` or `+` modifiers.
44104
44875
  """
44105
44876
  fips: NotRequired[pulumi.Input['TeamsAccountSettingsFipsArgsDict']]
44106
44877
  """
@@ -44154,7 +44925,7 @@ class TeamsAccountSettingsArgs:
44154
44925
  :param pulumi.Input['TeamsAccountSettingsBrowserIsolationArgs'] browser_isolation: Specify Clientless Browser Isolation settings.
44155
44926
  :param pulumi.Input['TeamsAccountSettingsCertificateArgs'] certificate: Specify certificate settings for Gateway TLS interception. If unset, the Cloudflare Root CA handles interception.
44156
44927
  :param pulumi.Input['TeamsAccountSettingsCustomCertificateArgs'] custom_certificate: Specify custom certificate settings for BYO-PKI. This field is deprecated; use `certificate` instead.
44157
- :param pulumi.Input['TeamsAccountSettingsExtendedEmailMatchingArgs'] extended_email_matching: Specify user email settings for the firewall policies. When this is enabled, we standardize the email addresses in the identity part of the rule, so that they match the extended email variants in the firewall policies. When this setting is turned off, the email addresses in the identity part of the rule will be matched exactly as provided. If your email has `.` or `+` modifiers, you should enable this setting.
44928
+ :param pulumi.Input['TeamsAccountSettingsExtendedEmailMatchingArgs'] extended_email_matching: Configures user email settings for firewall policies. When you enable this, the system standardizes email addresses in the identity portion of the rule to match extended email variants in firewall policies. When you disable this setting, the system matches email addresses exactly as you provide them. Enable this setting if your email uses `.` or `+` modifiers.
44158
44929
  :param pulumi.Input['TeamsAccountSettingsFipsArgs'] fips: Specify FIPS settings.
44159
44930
  :param pulumi.Input['TeamsAccountSettingsHostSelectorArgs'] host_selector: Enable host selection in egress policies.
44160
44931
  :param pulumi.Input['TeamsAccountSettingsInspectionArgs'] inspection: Define the proxy inspection mode.
@@ -44283,7 +45054,7 @@ class TeamsAccountSettingsArgs:
44283
45054
  @pulumi.getter(name="extendedEmailMatching")
44284
45055
  def extended_email_matching(self) -> Optional[pulumi.Input['TeamsAccountSettingsExtendedEmailMatchingArgs']]:
44285
45056
  """
44286
- Specify user email settings for the firewall policies. When this is enabled, we standardize the email addresses in the identity part of the rule, so that they match the extended email variants in the firewall policies. When this setting is turned off, the email addresses in the identity part of the rule will be matched exactly as provided. If your email has `.` or `+` modifiers, you should enable this setting.
45057
+ Configures user email settings for firewall policies. When you enable this, the system standardizes email addresses in the identity portion of the rule to match extended email variants in firewall policies. When you disable this setting, the system matches email addresses exactly as you provide them. Enable this setting if your email uses `.` or `+` modifiers.
44287
45058
  """
44288
45059
  return pulumi.get(self, "extended_email_matching")
44289
45060
 
@@ -47632,10 +48403,6 @@ if not MYPY:
47632
48403
  """
47633
48404
  Configuration parameters for the public hostname specific connection settings between cloudflared and origin server.
47634
48405
  """
47635
- warp_routing: NotRequired[pulumi.Input['TunnelConfigConfigWarpRoutingArgsDict']]
47636
- """
47637
- Enable private network access from WARP users to private network routes. This is enabled if the tunnel has an assigned route.
47638
- """
47639
48406
  elif False:
47640
48407
  TunnelConfigConfigArgsDict: TypeAlias = Mapping[str, Any]
47641
48408
 
@@ -47643,19 +48410,15 @@ elif False:
47643
48410
  class TunnelConfigConfigArgs:
47644
48411
  def __init__(__self__, *,
47645
48412
  ingresses: Optional[pulumi.Input[Sequence[pulumi.Input['TunnelConfigConfigIngressArgs']]]] = None,
47646
- origin_request: Optional[pulumi.Input['TunnelConfigConfigOriginRequestArgs']] = None,
47647
- warp_routing: Optional[pulumi.Input['TunnelConfigConfigWarpRoutingArgs']] = None):
48413
+ origin_request: Optional[pulumi.Input['TunnelConfigConfigOriginRequestArgs']] = None):
47648
48414
  """
47649
48415
  :param pulumi.Input[Sequence[pulumi.Input['TunnelConfigConfigIngressArgs']]] ingresses: List of public hostname definitions. At least one ingress rule needs to be defined for the tunnel.
47650
48416
  :param pulumi.Input['TunnelConfigConfigOriginRequestArgs'] origin_request: Configuration parameters for the public hostname specific connection settings between cloudflared and origin server.
47651
- :param pulumi.Input['TunnelConfigConfigWarpRoutingArgs'] warp_routing: Enable private network access from WARP users to private network routes. This is enabled if the tunnel has an assigned route.
47652
48417
  """
47653
48418
  if ingresses is not None:
47654
48419
  pulumi.set(__self__, "ingresses", ingresses)
47655
48420
  if origin_request is not None:
47656
48421
  pulumi.set(__self__, "origin_request", origin_request)
47657
- if warp_routing is not None:
47658
- pulumi.set(__self__, "warp_routing", warp_routing)
47659
48422
 
47660
48423
  @_builtins.property
47661
48424
  @pulumi.getter
@@ -47681,18 +48444,6 @@ class TunnelConfigConfigArgs:
47681
48444
  def origin_request(self, value: Optional[pulumi.Input['TunnelConfigConfigOriginRequestArgs']]):
47682
48445
  pulumi.set(self, "origin_request", value)
47683
48446
 
47684
- @_builtins.property
47685
- @pulumi.getter(name="warpRouting")
47686
- def warp_routing(self) -> Optional[pulumi.Input['TunnelConfigConfigWarpRoutingArgs']]:
47687
- """
47688
- Enable private network access from WARP users to private network routes. This is enabled if the tunnel has an assigned route.
47689
- """
47690
- return pulumi.get(self, "warp_routing")
47691
-
47692
- @warp_routing.setter
47693
- def warp_routing(self, value: Optional[pulumi.Input['TunnelConfigConfigWarpRoutingArgs']]):
47694
- pulumi.set(self, "warp_routing", value)
47695
-
47696
48447
 
47697
48448
  if not MYPY:
47698
48449
  class TunnelConfigConfigIngressArgsDict(TypedDict):
@@ -48495,29 +49246,6 @@ class TunnelConfigConfigOriginRequestAccessArgs:
48495
49246
  pulumi.set(self, "required", value)
48496
49247
 
48497
49248
 
48498
- if not MYPY:
48499
- class TunnelConfigConfigWarpRoutingArgsDict(TypedDict):
48500
- enabled: NotRequired[pulumi.Input[_builtins.bool]]
48501
- elif False:
48502
- TunnelConfigConfigWarpRoutingArgsDict: TypeAlias = Mapping[str, Any]
48503
-
48504
- @pulumi.input_type
48505
- class TunnelConfigConfigWarpRoutingArgs:
48506
- def __init__(__self__, *,
48507
- enabled: Optional[pulumi.Input[_builtins.bool]] = None):
48508
- if enabled is not None:
48509
- pulumi.set(__self__, "enabled", enabled)
48510
-
48511
- @_builtins.property
48512
- @pulumi.getter
48513
- def enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
48514
- return pulumi.get(self, "enabled")
48515
-
48516
- @enabled.setter
48517
- def enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
48518
- pulumi.set(self, "enabled", value)
48519
-
48520
-
48521
49249
  if not MYPY:
48522
49250
  class TunnelConnectionArgsDict(TypedDict):
48523
49251
  client_id: NotRequired[pulumi.Input[_builtins.str]]
@@ -49478,6 +50206,538 @@ class WorkerObservabilityLogsArgs:
49478
50206
  pulumi.set(self, "invocation_logs", value)
49479
50207
 
49480
50208
 
50209
+ if not MYPY:
50210
+ class WorkerReferencesArgsDict(TypedDict):
50211
+ dispatch_namespace_outbounds: NotRequired[pulumi.Input[Sequence[pulumi.Input['WorkerReferencesDispatchNamespaceOutboundArgsDict']]]]
50212
+ """
50213
+ Other Workers that reference the Worker as an outbound for a dispatch namespace.
50214
+ """
50215
+ domains: NotRequired[pulumi.Input[Sequence[pulumi.Input['WorkerReferencesDomainArgsDict']]]]
50216
+ """
50217
+ Custom domains connected to the Worker.
50218
+ """
50219
+ durable_objects: NotRequired[pulumi.Input[Sequence[pulumi.Input['WorkerReferencesDurableObjectArgsDict']]]]
50220
+ """
50221
+ Other Workers that reference Durable Object classes implemented by the Worker.
50222
+ """
50223
+ queues: NotRequired[pulumi.Input[Sequence[pulumi.Input['WorkerReferencesQueueArgsDict']]]]
50224
+ """
50225
+ Queues that send messages to the Worker.
50226
+ """
50227
+ workers: NotRequired[pulumi.Input[Sequence[pulumi.Input['WorkerReferencesWorkerArgsDict']]]]
50228
+ """
50229
+ Other Workers that reference the Worker using [service bindings](https://developers.cloudflare.com/workers/runtime-apis/bindings/service-bindings/).
50230
+ """
50231
+ elif False:
50232
+ WorkerReferencesArgsDict: TypeAlias = Mapping[str, Any]
50233
+
50234
+ @pulumi.input_type
50235
+ class WorkerReferencesArgs:
50236
+ def __init__(__self__, *,
50237
+ dispatch_namespace_outbounds: Optional[pulumi.Input[Sequence[pulumi.Input['WorkerReferencesDispatchNamespaceOutboundArgs']]]] = None,
50238
+ domains: Optional[pulumi.Input[Sequence[pulumi.Input['WorkerReferencesDomainArgs']]]] = None,
50239
+ durable_objects: Optional[pulumi.Input[Sequence[pulumi.Input['WorkerReferencesDurableObjectArgs']]]] = None,
50240
+ queues: Optional[pulumi.Input[Sequence[pulumi.Input['WorkerReferencesQueueArgs']]]] = None,
50241
+ workers: Optional[pulumi.Input[Sequence[pulumi.Input['WorkerReferencesWorkerArgs']]]] = None):
50242
+ """
50243
+ :param pulumi.Input[Sequence[pulumi.Input['WorkerReferencesDispatchNamespaceOutboundArgs']]] dispatch_namespace_outbounds: Other Workers that reference the Worker as an outbound for a dispatch namespace.
50244
+ :param pulumi.Input[Sequence[pulumi.Input['WorkerReferencesDomainArgs']]] domains: Custom domains connected to the Worker.
50245
+ :param pulumi.Input[Sequence[pulumi.Input['WorkerReferencesDurableObjectArgs']]] durable_objects: Other Workers that reference Durable Object classes implemented by the Worker.
50246
+ :param pulumi.Input[Sequence[pulumi.Input['WorkerReferencesQueueArgs']]] queues: Queues that send messages to the Worker.
50247
+ :param pulumi.Input[Sequence[pulumi.Input['WorkerReferencesWorkerArgs']]] workers: Other Workers that reference the Worker using [service bindings](https://developers.cloudflare.com/workers/runtime-apis/bindings/service-bindings/).
50248
+ """
50249
+ if dispatch_namespace_outbounds is not None:
50250
+ pulumi.set(__self__, "dispatch_namespace_outbounds", dispatch_namespace_outbounds)
50251
+ if domains is not None:
50252
+ pulumi.set(__self__, "domains", domains)
50253
+ if durable_objects is not None:
50254
+ pulumi.set(__self__, "durable_objects", durable_objects)
50255
+ if queues is not None:
50256
+ pulumi.set(__self__, "queues", queues)
50257
+ if workers is not None:
50258
+ pulumi.set(__self__, "workers", workers)
50259
+
50260
+ @_builtins.property
50261
+ @pulumi.getter(name="dispatchNamespaceOutbounds")
50262
+ def dispatch_namespace_outbounds(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['WorkerReferencesDispatchNamespaceOutboundArgs']]]]:
50263
+ """
50264
+ Other Workers that reference the Worker as an outbound for a dispatch namespace.
50265
+ """
50266
+ return pulumi.get(self, "dispatch_namespace_outbounds")
50267
+
50268
+ @dispatch_namespace_outbounds.setter
50269
+ def dispatch_namespace_outbounds(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['WorkerReferencesDispatchNamespaceOutboundArgs']]]]):
50270
+ pulumi.set(self, "dispatch_namespace_outbounds", value)
50271
+
50272
+ @_builtins.property
50273
+ @pulumi.getter
50274
+ def domains(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['WorkerReferencesDomainArgs']]]]:
50275
+ """
50276
+ Custom domains connected to the Worker.
50277
+ """
50278
+ return pulumi.get(self, "domains")
50279
+
50280
+ @domains.setter
50281
+ def domains(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['WorkerReferencesDomainArgs']]]]):
50282
+ pulumi.set(self, "domains", value)
50283
+
50284
+ @_builtins.property
50285
+ @pulumi.getter(name="durableObjects")
50286
+ def durable_objects(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['WorkerReferencesDurableObjectArgs']]]]:
50287
+ """
50288
+ Other Workers that reference Durable Object classes implemented by the Worker.
50289
+ """
50290
+ return pulumi.get(self, "durable_objects")
50291
+
50292
+ @durable_objects.setter
50293
+ def durable_objects(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['WorkerReferencesDurableObjectArgs']]]]):
50294
+ pulumi.set(self, "durable_objects", value)
50295
+
50296
+ @_builtins.property
50297
+ @pulumi.getter
50298
+ def queues(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['WorkerReferencesQueueArgs']]]]:
50299
+ """
50300
+ Queues that send messages to the Worker.
50301
+ """
50302
+ return pulumi.get(self, "queues")
50303
+
50304
+ @queues.setter
50305
+ def queues(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['WorkerReferencesQueueArgs']]]]):
50306
+ pulumi.set(self, "queues", value)
50307
+
50308
+ @_builtins.property
50309
+ @pulumi.getter
50310
+ def workers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['WorkerReferencesWorkerArgs']]]]:
50311
+ """
50312
+ Other Workers that reference the Worker using [service bindings](https://developers.cloudflare.com/workers/runtime-apis/bindings/service-bindings/).
50313
+ """
50314
+ return pulumi.get(self, "workers")
50315
+
50316
+ @workers.setter
50317
+ def workers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['WorkerReferencesWorkerArgs']]]]):
50318
+ pulumi.set(self, "workers", value)
50319
+
50320
+
50321
+ if not MYPY:
50322
+ class WorkerReferencesDispatchNamespaceOutboundArgsDict(TypedDict):
50323
+ namespace_id: NotRequired[pulumi.Input[_builtins.str]]
50324
+ """
50325
+ ID of the dispatch namespace.
50326
+ """
50327
+ namespace_name: NotRequired[pulumi.Input[_builtins.str]]
50328
+ """
50329
+ Name of the dispatch namespace.
50330
+ """
50331
+ worker_id: NotRequired[pulumi.Input[_builtins.str]]
50332
+ """
50333
+ ID of the Worker using the dispatch namespace.
50334
+ """
50335
+ worker_name: NotRequired[pulumi.Input[_builtins.str]]
50336
+ """
50337
+ Name of the Worker using the dispatch namespace.
50338
+ """
50339
+ elif False:
50340
+ WorkerReferencesDispatchNamespaceOutboundArgsDict: TypeAlias = Mapping[str, Any]
50341
+
50342
+ @pulumi.input_type
50343
+ class WorkerReferencesDispatchNamespaceOutboundArgs:
50344
+ def __init__(__self__, *,
50345
+ namespace_id: Optional[pulumi.Input[_builtins.str]] = None,
50346
+ namespace_name: Optional[pulumi.Input[_builtins.str]] = None,
50347
+ worker_id: Optional[pulumi.Input[_builtins.str]] = None,
50348
+ worker_name: Optional[pulumi.Input[_builtins.str]] = None):
50349
+ """
50350
+ :param pulumi.Input[_builtins.str] namespace_id: ID of the dispatch namespace.
50351
+ :param pulumi.Input[_builtins.str] namespace_name: Name of the dispatch namespace.
50352
+ :param pulumi.Input[_builtins.str] worker_id: ID of the Worker using the dispatch namespace.
50353
+ :param pulumi.Input[_builtins.str] worker_name: Name of the Worker using the dispatch namespace.
50354
+ """
50355
+ if namespace_id is not None:
50356
+ pulumi.set(__self__, "namespace_id", namespace_id)
50357
+ if namespace_name is not None:
50358
+ pulumi.set(__self__, "namespace_name", namespace_name)
50359
+ if worker_id is not None:
50360
+ pulumi.set(__self__, "worker_id", worker_id)
50361
+ if worker_name is not None:
50362
+ pulumi.set(__self__, "worker_name", worker_name)
50363
+
50364
+ @_builtins.property
50365
+ @pulumi.getter(name="namespaceId")
50366
+ def namespace_id(self) -> Optional[pulumi.Input[_builtins.str]]:
50367
+ """
50368
+ ID of the dispatch namespace.
50369
+ """
50370
+ return pulumi.get(self, "namespace_id")
50371
+
50372
+ @namespace_id.setter
50373
+ def namespace_id(self, value: Optional[pulumi.Input[_builtins.str]]):
50374
+ pulumi.set(self, "namespace_id", value)
50375
+
50376
+ @_builtins.property
50377
+ @pulumi.getter(name="namespaceName")
50378
+ def namespace_name(self) -> Optional[pulumi.Input[_builtins.str]]:
50379
+ """
50380
+ Name of the dispatch namespace.
50381
+ """
50382
+ return pulumi.get(self, "namespace_name")
50383
+
50384
+ @namespace_name.setter
50385
+ def namespace_name(self, value: Optional[pulumi.Input[_builtins.str]]):
50386
+ pulumi.set(self, "namespace_name", value)
50387
+
50388
+ @_builtins.property
50389
+ @pulumi.getter(name="workerId")
50390
+ def worker_id(self) -> Optional[pulumi.Input[_builtins.str]]:
50391
+ """
50392
+ ID of the Worker using the dispatch namespace.
50393
+ """
50394
+ return pulumi.get(self, "worker_id")
50395
+
50396
+ @worker_id.setter
50397
+ def worker_id(self, value: Optional[pulumi.Input[_builtins.str]]):
50398
+ pulumi.set(self, "worker_id", value)
50399
+
50400
+ @_builtins.property
50401
+ @pulumi.getter(name="workerName")
50402
+ def worker_name(self) -> Optional[pulumi.Input[_builtins.str]]:
50403
+ """
50404
+ Name of the Worker using the dispatch namespace.
50405
+ """
50406
+ return pulumi.get(self, "worker_name")
50407
+
50408
+ @worker_name.setter
50409
+ def worker_name(self, value: Optional[pulumi.Input[_builtins.str]]):
50410
+ pulumi.set(self, "worker_name", value)
50411
+
50412
+
50413
+ if not MYPY:
50414
+ class WorkerReferencesDomainArgsDict(TypedDict):
50415
+ certificate_id: NotRequired[pulumi.Input[_builtins.str]]
50416
+ """
50417
+ ID of the TLS certificate issued for the custom domain.
50418
+ """
50419
+ hostname: NotRequired[pulumi.Input[_builtins.str]]
50420
+ """
50421
+ Full hostname of the custom domain, including the zone name.
50422
+ """
50423
+ id: NotRequired[pulumi.Input[_builtins.str]]
50424
+ """
50425
+ ID of the custom domain.
50426
+ """
50427
+ zone_id: NotRequired[pulumi.Input[_builtins.str]]
50428
+ """
50429
+ ID of the zone.
50430
+ """
50431
+ zone_name: NotRequired[pulumi.Input[_builtins.str]]
50432
+ """
50433
+ Name of the zone.
50434
+ """
50435
+ elif False:
50436
+ WorkerReferencesDomainArgsDict: TypeAlias = Mapping[str, Any]
50437
+
50438
+ @pulumi.input_type
50439
+ class WorkerReferencesDomainArgs:
50440
+ def __init__(__self__, *,
50441
+ certificate_id: Optional[pulumi.Input[_builtins.str]] = None,
50442
+ hostname: Optional[pulumi.Input[_builtins.str]] = None,
50443
+ id: Optional[pulumi.Input[_builtins.str]] = None,
50444
+ zone_id: Optional[pulumi.Input[_builtins.str]] = None,
50445
+ zone_name: Optional[pulumi.Input[_builtins.str]] = None):
50446
+ """
50447
+ :param pulumi.Input[_builtins.str] certificate_id: ID of the TLS certificate issued for the custom domain.
50448
+ :param pulumi.Input[_builtins.str] hostname: Full hostname of the custom domain, including the zone name.
50449
+ :param pulumi.Input[_builtins.str] id: ID of the custom domain.
50450
+ :param pulumi.Input[_builtins.str] zone_id: ID of the zone.
50451
+ :param pulumi.Input[_builtins.str] zone_name: Name of the zone.
50452
+ """
50453
+ if certificate_id is not None:
50454
+ pulumi.set(__self__, "certificate_id", certificate_id)
50455
+ if hostname is not None:
50456
+ pulumi.set(__self__, "hostname", hostname)
50457
+ if id is not None:
50458
+ pulumi.set(__self__, "id", id)
50459
+ if zone_id is not None:
50460
+ pulumi.set(__self__, "zone_id", zone_id)
50461
+ if zone_name is not None:
50462
+ pulumi.set(__self__, "zone_name", zone_name)
50463
+
50464
+ @_builtins.property
50465
+ @pulumi.getter(name="certificateId")
50466
+ def certificate_id(self) -> Optional[pulumi.Input[_builtins.str]]:
50467
+ """
50468
+ ID of the TLS certificate issued for the custom domain.
50469
+ """
50470
+ return pulumi.get(self, "certificate_id")
50471
+
50472
+ @certificate_id.setter
50473
+ def certificate_id(self, value: Optional[pulumi.Input[_builtins.str]]):
50474
+ pulumi.set(self, "certificate_id", value)
50475
+
50476
+ @_builtins.property
50477
+ @pulumi.getter
50478
+ def hostname(self) -> Optional[pulumi.Input[_builtins.str]]:
50479
+ """
50480
+ Full hostname of the custom domain, including the zone name.
50481
+ """
50482
+ return pulumi.get(self, "hostname")
50483
+
50484
+ @hostname.setter
50485
+ def hostname(self, value: Optional[pulumi.Input[_builtins.str]]):
50486
+ pulumi.set(self, "hostname", value)
50487
+
50488
+ @_builtins.property
50489
+ @pulumi.getter
50490
+ def id(self) -> Optional[pulumi.Input[_builtins.str]]:
50491
+ """
50492
+ ID of the custom domain.
50493
+ """
50494
+ return pulumi.get(self, "id")
50495
+
50496
+ @id.setter
50497
+ def id(self, value: Optional[pulumi.Input[_builtins.str]]):
50498
+ pulumi.set(self, "id", value)
50499
+
50500
+ @_builtins.property
50501
+ @pulumi.getter(name="zoneId")
50502
+ def zone_id(self) -> Optional[pulumi.Input[_builtins.str]]:
50503
+ """
50504
+ ID of the zone.
50505
+ """
50506
+ return pulumi.get(self, "zone_id")
50507
+
50508
+ @zone_id.setter
50509
+ def zone_id(self, value: Optional[pulumi.Input[_builtins.str]]):
50510
+ pulumi.set(self, "zone_id", value)
50511
+
50512
+ @_builtins.property
50513
+ @pulumi.getter(name="zoneName")
50514
+ def zone_name(self) -> Optional[pulumi.Input[_builtins.str]]:
50515
+ """
50516
+ Name of the zone.
50517
+ """
50518
+ return pulumi.get(self, "zone_name")
50519
+
50520
+ @zone_name.setter
50521
+ def zone_name(self, value: Optional[pulumi.Input[_builtins.str]]):
50522
+ pulumi.set(self, "zone_name", value)
50523
+
50524
+
50525
+ if not MYPY:
50526
+ class WorkerReferencesDurableObjectArgsDict(TypedDict):
50527
+ namespace_id: NotRequired[pulumi.Input[_builtins.str]]
50528
+ """
50529
+ ID of the Durable Object namespace being used.
50530
+ """
50531
+ namespace_name: NotRequired[pulumi.Input[_builtins.str]]
50532
+ """
50533
+ Name of the Durable Object namespace being used.
50534
+ """
50535
+ worker_id: NotRequired[pulumi.Input[_builtins.str]]
50536
+ """
50537
+ ID of the Worker using the Durable Object implementation.
50538
+ """
50539
+ worker_name: NotRequired[pulumi.Input[_builtins.str]]
50540
+ """
50541
+ Name of the Worker using the Durable Object implementation.
50542
+ """
50543
+ elif False:
50544
+ WorkerReferencesDurableObjectArgsDict: TypeAlias = Mapping[str, Any]
50545
+
50546
+ @pulumi.input_type
50547
+ class WorkerReferencesDurableObjectArgs:
50548
+ def __init__(__self__, *,
50549
+ namespace_id: Optional[pulumi.Input[_builtins.str]] = None,
50550
+ namespace_name: Optional[pulumi.Input[_builtins.str]] = None,
50551
+ worker_id: Optional[pulumi.Input[_builtins.str]] = None,
50552
+ worker_name: Optional[pulumi.Input[_builtins.str]] = None):
50553
+ """
50554
+ :param pulumi.Input[_builtins.str] namespace_id: ID of the Durable Object namespace being used.
50555
+ :param pulumi.Input[_builtins.str] namespace_name: Name of the Durable Object namespace being used.
50556
+ :param pulumi.Input[_builtins.str] worker_id: ID of the Worker using the Durable Object implementation.
50557
+ :param pulumi.Input[_builtins.str] worker_name: Name of the Worker using the Durable Object implementation.
50558
+ """
50559
+ if namespace_id is not None:
50560
+ pulumi.set(__self__, "namespace_id", namespace_id)
50561
+ if namespace_name is not None:
50562
+ pulumi.set(__self__, "namespace_name", namespace_name)
50563
+ if worker_id is not None:
50564
+ pulumi.set(__self__, "worker_id", worker_id)
50565
+ if worker_name is not None:
50566
+ pulumi.set(__self__, "worker_name", worker_name)
50567
+
50568
+ @_builtins.property
50569
+ @pulumi.getter(name="namespaceId")
50570
+ def namespace_id(self) -> Optional[pulumi.Input[_builtins.str]]:
50571
+ """
50572
+ ID of the Durable Object namespace being used.
50573
+ """
50574
+ return pulumi.get(self, "namespace_id")
50575
+
50576
+ @namespace_id.setter
50577
+ def namespace_id(self, value: Optional[pulumi.Input[_builtins.str]]):
50578
+ pulumi.set(self, "namespace_id", value)
50579
+
50580
+ @_builtins.property
50581
+ @pulumi.getter(name="namespaceName")
50582
+ def namespace_name(self) -> Optional[pulumi.Input[_builtins.str]]:
50583
+ """
50584
+ Name of the Durable Object namespace being used.
50585
+ """
50586
+ return pulumi.get(self, "namespace_name")
50587
+
50588
+ @namespace_name.setter
50589
+ def namespace_name(self, value: Optional[pulumi.Input[_builtins.str]]):
50590
+ pulumi.set(self, "namespace_name", value)
50591
+
50592
+ @_builtins.property
50593
+ @pulumi.getter(name="workerId")
50594
+ def worker_id(self) -> Optional[pulumi.Input[_builtins.str]]:
50595
+ """
50596
+ ID of the Worker using the Durable Object implementation.
50597
+ """
50598
+ return pulumi.get(self, "worker_id")
50599
+
50600
+ @worker_id.setter
50601
+ def worker_id(self, value: Optional[pulumi.Input[_builtins.str]]):
50602
+ pulumi.set(self, "worker_id", value)
50603
+
50604
+ @_builtins.property
50605
+ @pulumi.getter(name="workerName")
50606
+ def worker_name(self) -> Optional[pulumi.Input[_builtins.str]]:
50607
+ """
50608
+ Name of the Worker using the Durable Object implementation.
50609
+ """
50610
+ return pulumi.get(self, "worker_name")
50611
+
50612
+ @worker_name.setter
50613
+ def worker_name(self, value: Optional[pulumi.Input[_builtins.str]]):
50614
+ pulumi.set(self, "worker_name", value)
50615
+
50616
+
50617
+ if not MYPY:
50618
+ class WorkerReferencesQueueArgsDict(TypedDict):
50619
+ queue_consumer_id: NotRequired[pulumi.Input[_builtins.str]]
50620
+ """
50621
+ ID of the queue consumer configuration.
50622
+ """
50623
+ queue_id: NotRequired[pulumi.Input[_builtins.str]]
50624
+ """
50625
+ ID of the queue.
50626
+ """
50627
+ queue_name: NotRequired[pulumi.Input[_builtins.str]]
50628
+ """
50629
+ Name of the queue.
50630
+ """
50631
+ elif False:
50632
+ WorkerReferencesQueueArgsDict: TypeAlias = Mapping[str, Any]
50633
+
50634
+ @pulumi.input_type
50635
+ class WorkerReferencesQueueArgs:
50636
+ def __init__(__self__, *,
50637
+ queue_consumer_id: Optional[pulumi.Input[_builtins.str]] = None,
50638
+ queue_id: Optional[pulumi.Input[_builtins.str]] = None,
50639
+ queue_name: Optional[pulumi.Input[_builtins.str]] = None):
50640
+ """
50641
+ :param pulumi.Input[_builtins.str] queue_consumer_id: ID of the queue consumer configuration.
50642
+ :param pulumi.Input[_builtins.str] queue_id: ID of the queue.
50643
+ :param pulumi.Input[_builtins.str] queue_name: Name of the queue.
50644
+ """
50645
+ if queue_consumer_id is not None:
50646
+ pulumi.set(__self__, "queue_consumer_id", queue_consumer_id)
50647
+ if queue_id is not None:
50648
+ pulumi.set(__self__, "queue_id", queue_id)
50649
+ if queue_name is not None:
50650
+ pulumi.set(__self__, "queue_name", queue_name)
50651
+
50652
+ @_builtins.property
50653
+ @pulumi.getter(name="queueConsumerId")
50654
+ def queue_consumer_id(self) -> Optional[pulumi.Input[_builtins.str]]:
50655
+ """
50656
+ ID of the queue consumer configuration.
50657
+ """
50658
+ return pulumi.get(self, "queue_consumer_id")
50659
+
50660
+ @queue_consumer_id.setter
50661
+ def queue_consumer_id(self, value: Optional[pulumi.Input[_builtins.str]]):
50662
+ pulumi.set(self, "queue_consumer_id", value)
50663
+
50664
+ @_builtins.property
50665
+ @pulumi.getter(name="queueId")
50666
+ def queue_id(self) -> Optional[pulumi.Input[_builtins.str]]:
50667
+ """
50668
+ ID of the queue.
50669
+ """
50670
+ return pulumi.get(self, "queue_id")
50671
+
50672
+ @queue_id.setter
50673
+ def queue_id(self, value: Optional[pulumi.Input[_builtins.str]]):
50674
+ pulumi.set(self, "queue_id", value)
50675
+
50676
+ @_builtins.property
50677
+ @pulumi.getter(name="queueName")
50678
+ def queue_name(self) -> Optional[pulumi.Input[_builtins.str]]:
50679
+ """
50680
+ Name of the queue.
50681
+ """
50682
+ return pulumi.get(self, "queue_name")
50683
+
50684
+ @queue_name.setter
50685
+ def queue_name(self, value: Optional[pulumi.Input[_builtins.str]]):
50686
+ pulumi.set(self, "queue_name", value)
50687
+
50688
+
50689
+ if not MYPY:
50690
+ class WorkerReferencesWorkerArgsDict(TypedDict):
50691
+ id: NotRequired[pulumi.Input[_builtins.str]]
50692
+ """
50693
+ ID of the referencing Worker.
50694
+ """
50695
+ name: NotRequired[pulumi.Input[_builtins.str]]
50696
+ """
50697
+ Name of the referencing Worker.
50698
+ """
50699
+ elif False:
50700
+ WorkerReferencesWorkerArgsDict: TypeAlias = Mapping[str, Any]
50701
+
50702
+ @pulumi.input_type
50703
+ class WorkerReferencesWorkerArgs:
50704
+ def __init__(__self__, *,
50705
+ id: Optional[pulumi.Input[_builtins.str]] = None,
50706
+ name: Optional[pulumi.Input[_builtins.str]] = None):
50707
+ """
50708
+ :param pulumi.Input[_builtins.str] id: ID of the referencing Worker.
50709
+ :param pulumi.Input[_builtins.str] name: Name of the referencing Worker.
50710
+ """
50711
+ if id is not None:
50712
+ pulumi.set(__self__, "id", id)
50713
+ if name is not None:
50714
+ pulumi.set(__self__, "name", name)
50715
+
50716
+ @_builtins.property
50717
+ @pulumi.getter
50718
+ def id(self) -> Optional[pulumi.Input[_builtins.str]]:
50719
+ """
50720
+ ID of the referencing Worker.
50721
+ """
50722
+ return pulumi.get(self, "id")
50723
+
50724
+ @id.setter
50725
+ def id(self, value: Optional[pulumi.Input[_builtins.str]]):
50726
+ pulumi.set(self, "id", value)
50727
+
50728
+ @_builtins.property
50729
+ @pulumi.getter
50730
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
50731
+ """
50732
+ Name of the referencing Worker.
50733
+ """
50734
+ return pulumi.get(self, "name")
50735
+
50736
+ @name.setter
50737
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
50738
+ pulumi.set(self, "name", value)
50739
+
50740
+
49481
50741
  if not MYPY:
49482
50742
  class WorkerScriptAssetsArgsDict(TypedDict):
49483
50743
  asset_manifest_sha256: NotRequired[pulumi.Input[_builtins.str]]
@@ -49791,7 +51051,7 @@ if not MYPY:
49791
51051
  """
49792
51052
  namespace: NotRequired[pulumi.Input[_builtins.str]]
49793
51053
  """
49794
- Namespace to bind to.
51054
+ The name of the dispatch namespace.
49795
51055
  """
49796
51056
  namespace_id: NotRequired[pulumi.Input[_builtins.str]]
49797
51057
  """
@@ -49910,7 +51170,7 @@ class WorkerScriptBindingArgs:
49910
51170
  Available values: "eu", "fedramp".
49911
51171
  :param pulumi.Input[_builtins.str] key_base64: Base64-encoded key data. Required if `format` is "raw", "pkcs8", or "spki".
49912
51172
  :param pulumi.Input[_builtins.str] key_jwk: Key data in [JSON Web Key](https://developer.mozilla.org/en-US/docs/Web/API/SubtleCrypto/importKey#json_web_key) format. Required if `format` is "jwk".
49913
- :param pulumi.Input[_builtins.str] namespace: Namespace to bind to.
51173
+ :param pulumi.Input[_builtins.str] namespace: The name of the dispatch namespace.
49914
51174
  :param pulumi.Input[_builtins.str] namespace_id: Namespace identifier tag.
49915
51175
  :param pulumi.Input[_builtins.str] old_name: The old name of the inherited binding. If set, the binding will be renamed from `old_name` to `name` in the new version. If not set, the binding will keep the same name between versions.
49916
51176
  :param pulumi.Input['WorkerScriptBindingOutboundArgs'] outbound: Outbound worker.
@@ -50214,7 +51474,7 @@ class WorkerScriptBindingArgs:
50214
51474
  @pulumi.getter
50215
51475
  def namespace(self) -> Optional[pulumi.Input[_builtins.str]]:
50216
51476
  """
50217
- Namespace to bind to.
51477
+ The name of the dispatch namespace.
50218
51478
  """
50219
51479
  return pulumi.get(self, "namespace")
50220
51480
 
@@ -51814,7 +53074,7 @@ if not MYPY:
51814
53074
  type: pulumi.Input[_builtins.str]
51815
53075
  """
51816
53076
  The kind of resource that the binding provides.
51817
- Available values: "ai", "analytics*engine", "assets", "browser", "d1", "data*blob", "dispatch*namespace", "durable*object*namespace", "hyperdrive", "inherit", "images", "json", "kv*namespace", "mtls*certificate", "plain*text", "pipelines", "queue", "r2*bucket", "secret*text", "send*email", "service", "tail*consumer", "text*blob", "vectorize", "version*metadata", "secrets*store*secret", "secret*key", "workflow", "wasm*module".
53077
+ Available values: "ai", "analytics*engine", "assets", "browser", "d1", "data*blob", "dispatch*namespace", "durable*object*namespace", "hyperdrive", "inherit", "images", "json", "kv*namespace", "mtls*certificate", "plain*text", "pipelines", "queue", "r2*bucket", "secret*text", "send*email", "service", "text*blob", "vectorize", "version*metadata", "secrets*store*secret", "secret*key", "workflow", "wasm_module".
51818
53078
  """
51819
53079
  algorithm: NotRequired[pulumi.Input[_builtins.str]]
51820
53080
  """
@@ -51884,7 +53144,7 @@ if not MYPY:
51884
53144
  """
51885
53145
  namespace: NotRequired[pulumi.Input[_builtins.str]]
51886
53146
  """
51887
- Namespace to bind to.
53147
+ The name of the dispatch namespace.
51888
53148
  """
51889
53149
  namespace_id: NotRequired[pulumi.Input[_builtins.str]]
51890
53150
  """
@@ -51984,7 +53244,7 @@ class WorkerVersionBindingArgs:
51984
53244
  """
51985
53245
  :param pulumi.Input[_builtins.str] name: A JavaScript variable name for the binding.
51986
53246
  :param pulumi.Input[_builtins.str] type: The kind of resource that the binding provides.
51987
- Available values: "ai", "analytics*engine", "assets", "browser", "d1", "data*blob", "dispatch*namespace", "durable*object*namespace", "hyperdrive", "inherit", "images", "json", "kv*namespace", "mtls*certificate", "plain*text", "pipelines", "queue", "r2*bucket", "secret*text", "send*email", "service", "tail*consumer", "text*blob", "vectorize", "version*metadata", "secrets*store*secret", "secret*key", "workflow", "wasm*module".
53247
+ Available values: "ai", "analytics*engine", "assets", "browser", "d1", "data*blob", "dispatch*namespace", "durable*object*namespace", "hyperdrive", "inherit", "images", "json", "kv*namespace", "mtls*certificate", "plain*text", "pipelines", "queue", "r2*bucket", "secret*text", "send*email", "service", "text*blob", "vectorize", "version*metadata", "secrets*store*secret", "secret*key", "workflow", "wasm_module".
51988
53248
  :param pulumi.Input[_builtins.str] algorithm: Algorithm-specific key parameters. [Learn more](https://developer.mozilla.org/en-US/docs/Web/API/SubtleCrypto/importKey#algorithm).
51989
53249
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] allowed_destination_addresses: List of allowed destination addresses.
51990
53250
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] allowed_sender_addresses: List of allowed sender addresses.
@@ -52003,7 +53263,7 @@ class WorkerVersionBindingArgs:
52003
53263
  Available values: "eu", "fedramp".
52004
53264
  :param pulumi.Input[_builtins.str] key_base64: Base64-encoded key data. Required if `format` is "raw", "pkcs8", or "spki".
52005
53265
  :param pulumi.Input[_builtins.str] key_jwk: Key data in [JSON Web Key](https://developer.mozilla.org/en-US/docs/Web/API/SubtleCrypto/importKey#json_web_key) format. Required if `format` is "jwk".
52006
- :param pulumi.Input[_builtins.str] namespace: Namespace to bind to.
53266
+ :param pulumi.Input[_builtins.str] namespace: The name of the dispatch namespace.
52007
53267
  :param pulumi.Input[_builtins.str] namespace_id: Namespace identifier tag.
52008
53268
  :param pulumi.Input[_builtins.str] old_name: The old name of the inherited binding. If set, the binding will be renamed from `old_name` to `name` in the new version. If not set, the binding will keep the same name between versions.
52009
53269
  :param pulumi.Input['WorkerVersionBindingOutboundArgs'] outbound: Outbound worker.
@@ -52101,7 +53361,7 @@ class WorkerVersionBindingArgs:
52101
53361
  def type(self) -> pulumi.Input[_builtins.str]:
52102
53362
  """
52103
53363
  The kind of resource that the binding provides.
52104
- Available values: "ai", "analytics*engine", "assets", "browser", "d1", "data*blob", "dispatch*namespace", "durable*object*namespace", "hyperdrive", "inherit", "images", "json", "kv*namespace", "mtls*certificate", "plain*text", "pipelines", "queue", "r2*bucket", "secret*text", "send*email", "service", "tail*consumer", "text*blob", "vectorize", "version*metadata", "secrets*store*secret", "secret*key", "workflow", "wasm*module".
53364
+ Available values: "ai", "analytics*engine", "assets", "browser", "d1", "data*blob", "dispatch*namespace", "durable*object*namespace", "hyperdrive", "inherit", "images", "json", "kv*namespace", "mtls*certificate", "plain*text", "pipelines", "queue", "r2*bucket", "secret*text", "send*email", "service", "text*blob", "vectorize", "version*metadata", "secrets*store*secret", "secret*key", "workflow", "wasm_module".
52105
53365
  """
52106
53366
  return pulumi.get(self, "type")
52107
53367
 
@@ -52307,7 +53567,7 @@ class WorkerVersionBindingArgs:
52307
53567
  @pulumi.getter
52308
53568
  def namespace(self) -> Optional[pulumi.Input[_builtins.str]]:
52309
53569
  """
52310
- Namespace to bind to.
53570
+ The name of the dispatch namespace.
52311
53571
  """
52312
53572
  return pulumi.get(self, "namespace")
52313
53573
 
@@ -53644,7 +54904,7 @@ if not MYPY:
53644
54904
  """
53645
54905
  namespace: NotRequired[pulumi.Input[_builtins.str]]
53646
54906
  """
53647
- Namespace to bind to.
54907
+ The name of the dispatch namespace.
53648
54908
  """
53649
54909
  namespace_id: NotRequired[pulumi.Input[_builtins.str]]
53650
54910
  """
@@ -53763,7 +55023,7 @@ class WorkersScriptBindingArgs:
53763
55023
  Available values: "eu", "fedramp".
53764
55024
  :param pulumi.Input[_builtins.str] key_base64: Base64-encoded key data. Required if `format` is "raw", "pkcs8", or "spki".
53765
55025
  :param pulumi.Input[_builtins.str] key_jwk: Key data in [JSON Web Key](https://developer.mozilla.org/en-US/docs/Web/API/SubtleCrypto/importKey#json_web_key) format. Required if `format` is "jwk".
53766
- :param pulumi.Input[_builtins.str] namespace: Namespace to bind to.
55026
+ :param pulumi.Input[_builtins.str] namespace: The name of the dispatch namespace.
53767
55027
  :param pulumi.Input[_builtins.str] namespace_id: Namespace identifier tag.
53768
55028
  :param pulumi.Input[_builtins.str] old_name: The old name of the inherited binding. If set, the binding will be renamed from `old_name` to `name` in the new version. If not set, the binding will keep the same name between versions.
53769
55029
  :param pulumi.Input['WorkersScriptBindingOutboundArgs'] outbound: Outbound worker.
@@ -54067,7 +55327,7 @@ class WorkersScriptBindingArgs:
54067
55327
  @pulumi.getter
54068
55328
  def namespace(self) -> Optional[pulumi.Input[_builtins.str]]:
54069
55329
  """
54070
- Namespace to bind to.
55330
+ The name of the dispatch namespace.
54071
55331
  """
54072
55332
  return pulumi.get(self, "namespace")
54073
55333
 
@@ -55634,6 +56894,10 @@ if not MYPY:
55634
56894
  The L4 protocol of the destination. When omitted, both UDP and TCP traffic will match.
55635
56895
  Available values: "tcp", "udp".
55636
56896
  """
56897
+ mcp_server_id: NotRequired[pulumi.Input[_builtins.str]]
56898
+ """
56899
+ A MCP server id configured in ai-controls. Access will secure the MCP server if accessed through a MCP portal.
56900
+ """
55637
56901
  port_range: NotRequired[pulumi.Input[_builtins.str]]
55638
56902
  """
55639
56903
  The port range of the destination. Can be a single port or a range of ports. When omitted, all ports will match.
@@ -55659,6 +56923,7 @@ class ZeroTrustAccessApplicationDestinationArgs:
55659
56923
  cidr: Optional[pulumi.Input[_builtins.str]] = None,
55660
56924
  hostname: Optional[pulumi.Input[_builtins.str]] = None,
55661
56925
  l4_protocol: Optional[pulumi.Input[_builtins.str]] = None,
56926
+ mcp_server_id: Optional[pulumi.Input[_builtins.str]] = None,
55662
56927
  port_range: Optional[pulumi.Input[_builtins.str]] = None,
55663
56928
  type: Optional[pulumi.Input[_builtins.str]] = None,
55664
56929
  uri: Optional[pulumi.Input[_builtins.str]] = None,
@@ -55668,6 +56933,7 @@ class ZeroTrustAccessApplicationDestinationArgs:
55668
56933
  :param pulumi.Input[_builtins.str] hostname: The hostname of the destination. Matches a valid SNI served by an HTTPS origin.
55669
56934
  :param pulumi.Input[_builtins.str] l4_protocol: The L4 protocol of the destination. When omitted, both UDP and TCP traffic will match.
55670
56935
  Available values: "tcp", "udp".
56936
+ :param pulumi.Input[_builtins.str] mcp_server_id: A MCP server id configured in ai-controls. Access will secure the MCP server if accessed through a MCP portal.
55671
56937
  :param pulumi.Input[_builtins.str] port_range: The port range of the destination. Can be a single port or a range of ports. When omitted, all ports will match.
55672
56938
  :param pulumi.Input[_builtins.str] type: Available values: "public", "private".
55673
56939
  :param pulumi.Input[_builtins.str] uri: The URI of the destination. Public destinations' URIs can include a domain and path with [wildcards](https://developers.cloudflare.com/cloudflare-one/policies/access/app-paths/).
@@ -55679,6 +56945,8 @@ class ZeroTrustAccessApplicationDestinationArgs:
55679
56945
  pulumi.set(__self__, "hostname", hostname)
55680
56946
  if l4_protocol is not None:
55681
56947
  pulumi.set(__self__, "l4_protocol", l4_protocol)
56948
+ if mcp_server_id is not None:
56949
+ pulumi.set(__self__, "mcp_server_id", mcp_server_id)
55682
56950
  if port_range is not None:
55683
56951
  pulumi.set(__self__, "port_range", port_range)
55684
56952
  if type is not None:
@@ -55725,6 +56993,18 @@ class ZeroTrustAccessApplicationDestinationArgs:
55725
56993
  def l4_protocol(self, value: Optional[pulumi.Input[_builtins.str]]):
55726
56994
  pulumi.set(self, "l4_protocol", value)
55727
56995
 
56996
+ @_builtins.property
56997
+ @pulumi.getter(name="mcpServerId")
56998
+ def mcp_server_id(self) -> Optional[pulumi.Input[_builtins.str]]:
56999
+ """
57000
+ A MCP server id configured in ai-controls. Access will secure the MCP server if accessed through a MCP portal.
57001
+ """
57002
+ return pulumi.get(self, "mcp_server_id")
57003
+
57004
+ @mcp_server_id.setter
57005
+ def mcp_server_id(self, value: Optional[pulumi.Input[_builtins.str]]):
57006
+ pulumi.set(self, "mcp_server_id", value)
57007
+
55728
57008
  @_builtins.property
55729
57009
  @pulumi.getter(name="portRange")
55730
57010
  def port_range(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -71083,7 +72363,7 @@ if not MYPY:
71083
72363
  """
71084
72364
  os_version_extra: NotRequired[pulumi.Input[_builtins.str]]
71085
72365
  """
71086
- Additional version data. For Mac or iOS, the Product Version Extra. For Linux, the kernel release version. (Mac, iOS, and Linux only).
72366
+ Additional version data. For Mac or iOS, the Product Version Extra. For Linux, the distribution name and version. (Mac, iOS, and Linux only).
71087
72367
  """
71088
72368
  overall: NotRequired[pulumi.Input[_builtins.str]]
71089
72369
  """
@@ -71224,7 +72504,7 @@ class ZeroTrustDevicePostureRuleInputArgs:
71224
72504
  :param pulumi.Input[_builtins.str] os: Os Version.
71225
72505
  :param pulumi.Input[_builtins.str] os_distro_name: Operating System Distribution Name (linux only).
71226
72506
  :param pulumi.Input[_builtins.str] os_distro_revision: Version of OS Distribution (linux only).
71227
- :param pulumi.Input[_builtins.str] os_version_extra: Additional version data. For Mac or iOS, the Product Version Extra. For Linux, the kernel release version. (Mac, iOS, and Linux only).
72507
+ :param pulumi.Input[_builtins.str] os_version_extra: Additional version data. For Mac or iOS, the Product Version Extra. For Linux, the distribution name and version. (Mac, iOS, and Linux only).
71228
72508
  :param pulumi.Input[_builtins.str] overall: Overall.
71229
72509
  :param pulumi.Input[_builtins.str] path: File path.
71230
72510
  :param pulumi.Input[_builtins.bool] require_all: Whether to check all disks for encryption.
@@ -71646,7 +72926,7 @@ class ZeroTrustDevicePostureRuleInputArgs:
71646
72926
  @pulumi.getter(name="osVersionExtra")
71647
72927
  def os_version_extra(self) -> Optional[pulumi.Input[_builtins.str]]:
71648
72928
  """
71649
- Additional version data. For Mac or iOS, the Product Version Extra. For Linux, the kernel release version. (Mac, iOS, and Linux only).
72929
+ Additional version data. For Mac or iOS, the Product Version Extra. For Linux, the distribution name and version. (Mac, iOS, and Linux only).
71650
72930
  """
71651
72931
  return pulumi.get(self, "os_version_extra")
71652
72932
 
@@ -71913,11 +73193,11 @@ class ZeroTrustDevicePostureRuleMatchArgs:
71913
73193
 
71914
73194
  if not MYPY:
71915
73195
  class ZeroTrustDexTestDataArgsDict(TypedDict):
71916
- host: pulumi.Input[_builtins.str]
73196
+ host: NotRequired[pulumi.Input[_builtins.str]]
71917
73197
  """
71918
73198
  The desired endpoint to test.
71919
73199
  """
71920
- kind: pulumi.Input[_builtins.str]
73200
+ kind: NotRequired[pulumi.Input[_builtins.str]]
71921
73201
  """
71922
73202
  The type of test.
71923
73203
  """
@@ -71931,41 +73211,43 @@ elif False:
71931
73211
  @pulumi.input_type
71932
73212
  class ZeroTrustDexTestDataArgs:
71933
73213
  def __init__(__self__, *,
71934
- host: pulumi.Input[_builtins.str],
71935
- kind: pulumi.Input[_builtins.str],
73214
+ host: Optional[pulumi.Input[_builtins.str]] = None,
73215
+ kind: Optional[pulumi.Input[_builtins.str]] = None,
71936
73216
  method: Optional[pulumi.Input[_builtins.str]] = None):
71937
73217
  """
71938
73218
  :param pulumi.Input[_builtins.str] host: The desired endpoint to test.
71939
73219
  :param pulumi.Input[_builtins.str] kind: The type of test.
71940
73220
  :param pulumi.Input[_builtins.str] method: The HTTP request method type.
71941
73221
  """
71942
- pulumi.set(__self__, "host", host)
71943
- pulumi.set(__self__, "kind", kind)
73222
+ if host is not None:
73223
+ pulumi.set(__self__, "host", host)
73224
+ if kind is not None:
73225
+ pulumi.set(__self__, "kind", kind)
71944
73226
  if method is not None:
71945
73227
  pulumi.set(__self__, "method", method)
71946
73228
 
71947
73229
  @_builtins.property
71948
73230
  @pulumi.getter
71949
- def host(self) -> pulumi.Input[_builtins.str]:
73231
+ def host(self) -> Optional[pulumi.Input[_builtins.str]]:
71950
73232
  """
71951
73233
  The desired endpoint to test.
71952
73234
  """
71953
73235
  return pulumi.get(self, "host")
71954
73236
 
71955
73237
  @host.setter
71956
- def host(self, value: pulumi.Input[_builtins.str]):
73238
+ def host(self, value: Optional[pulumi.Input[_builtins.str]]):
71957
73239
  pulumi.set(self, "host", value)
71958
73240
 
71959
73241
  @_builtins.property
71960
73242
  @pulumi.getter
71961
- def kind(self) -> pulumi.Input[_builtins.str]:
73243
+ def kind(self) -> Optional[pulumi.Input[_builtins.str]]:
71962
73244
  """
71963
73245
  The type of test.
71964
73246
  """
71965
73247
  return pulumi.get(self, "kind")
71966
73248
 
71967
73249
  @kind.setter
71968
- def kind(self, value: pulumi.Input[_builtins.str]):
73250
+ def kind(self, value: Optional[pulumi.Input[_builtins.str]]):
71969
73251
  pulumi.set(self, "kind", value)
71970
73252
 
71971
73253
  @_builtins.property
@@ -75942,7 +77224,7 @@ if not MYPY:
75942
77224
  """
75943
77225
  extended_email_matching: NotRequired[pulumi.Input['ZeroTrustGatewaySettingsSettingsExtendedEmailMatchingArgsDict']]
75944
77226
  """
75945
- Specify user email settings for the firewall policies. When this is enabled, we standardize the email addresses in the identity part of the rule, so that they match the extended email variants in the firewall policies. When this setting is turned off, the email addresses in the identity part of the rule will be matched exactly as provided. If your email has `.` or `+` modifiers, you should enable this setting.
77227
+ Configures user email settings for firewall policies. When you enable this, the system standardizes email addresses in the identity portion of the rule to match extended email variants in firewall policies. When you disable this setting, the system matches email addresses exactly as you provide them. Enable this setting if your email uses `.` or `+` modifiers.
75946
77228
  """
75947
77229
  fips: NotRequired[pulumi.Input['ZeroTrustGatewaySettingsSettingsFipsArgsDict']]
75948
77230
  """
@@ -75996,7 +77278,7 @@ class ZeroTrustGatewaySettingsSettingsArgs:
75996
77278
  :param pulumi.Input['ZeroTrustGatewaySettingsSettingsBrowserIsolationArgs'] browser_isolation: Specify Clientless Browser Isolation settings.
75997
77279
  :param pulumi.Input['ZeroTrustGatewaySettingsSettingsCertificateArgs'] certificate: Specify certificate settings for Gateway TLS interception. If unset, the Cloudflare Root CA handles interception.
75998
77280
  :param pulumi.Input['ZeroTrustGatewaySettingsSettingsCustomCertificateArgs'] custom_certificate: Specify custom certificate settings for BYO-PKI. This field is deprecated; use `certificate` instead.
75999
- :param pulumi.Input['ZeroTrustGatewaySettingsSettingsExtendedEmailMatchingArgs'] extended_email_matching: Specify user email settings for the firewall policies. When this is enabled, we standardize the email addresses in the identity part of the rule, so that they match the extended email variants in the firewall policies. When this setting is turned off, the email addresses in the identity part of the rule will be matched exactly as provided. If your email has `.` or `+` modifiers, you should enable this setting.
77281
+ :param pulumi.Input['ZeroTrustGatewaySettingsSettingsExtendedEmailMatchingArgs'] extended_email_matching: Configures user email settings for firewall policies. When you enable this, the system standardizes email addresses in the identity portion of the rule to match extended email variants in firewall policies. When you disable this setting, the system matches email addresses exactly as you provide them. Enable this setting if your email uses `.` or `+` modifiers.
76000
77282
  :param pulumi.Input['ZeroTrustGatewaySettingsSettingsFipsArgs'] fips: Specify FIPS settings.
76001
77283
  :param pulumi.Input['ZeroTrustGatewaySettingsSettingsHostSelectorArgs'] host_selector: Enable host selection in egress policies.
76002
77284
  :param pulumi.Input['ZeroTrustGatewaySettingsSettingsInspectionArgs'] inspection: Define the proxy inspection mode.
@@ -76125,7 +77407,7 @@ class ZeroTrustGatewaySettingsSettingsArgs:
76125
77407
  @pulumi.getter(name="extendedEmailMatching")
76126
77408
  def extended_email_matching(self) -> Optional[pulumi.Input['ZeroTrustGatewaySettingsSettingsExtendedEmailMatchingArgs']]:
76127
77409
  """
76128
- Specify user email settings for the firewall policies. When this is enabled, we standardize the email addresses in the identity part of the rule, so that they match the extended email variants in the firewall policies. When this setting is turned off, the email addresses in the identity part of the rule will be matched exactly as provided. If your email has `.` or `+` modifiers, you should enable this setting.
77410
+ Configures user email settings for firewall policies. When you enable this, the system standardizes email addresses in the identity portion of the rule to match extended email variants in firewall policies. When you disable this setting, the system matches email addresses exactly as you provide them. Enable this setting if your email uses `.` or `+` modifiers.
76129
77411
  """
76130
77412
  return pulumi.get(self, "extended_email_matching")
76131
77413
 
@@ -77589,10 +78871,6 @@ if not MYPY:
77589
78871
  """
77590
78872
  Configuration parameters for the public hostname specific connection settings between cloudflared and origin server.
77591
78873
  """
77592
- warp_routing: NotRequired[pulumi.Input['ZeroTrustTunnelCloudflaredConfigConfigWarpRoutingArgsDict']]
77593
- """
77594
- Enable private network access from WARP users to private network routes. This is enabled if the tunnel has an assigned route.
77595
- """
77596
78874
  elif False:
77597
78875
  ZeroTrustTunnelCloudflaredConfigConfigArgsDict: TypeAlias = Mapping[str, Any]
77598
78876
 
@@ -77600,19 +78878,15 @@ elif False:
77600
78878
  class ZeroTrustTunnelCloudflaredConfigConfigArgs:
77601
78879
  def __init__(__self__, *,
77602
78880
  ingresses: Optional[pulumi.Input[Sequence[pulumi.Input['ZeroTrustTunnelCloudflaredConfigConfigIngressArgs']]]] = None,
77603
- origin_request: Optional[pulumi.Input['ZeroTrustTunnelCloudflaredConfigConfigOriginRequestArgs']] = None,
77604
- warp_routing: Optional[pulumi.Input['ZeroTrustTunnelCloudflaredConfigConfigWarpRoutingArgs']] = None):
78881
+ origin_request: Optional[pulumi.Input['ZeroTrustTunnelCloudflaredConfigConfigOriginRequestArgs']] = None):
77605
78882
  """
77606
78883
  :param pulumi.Input[Sequence[pulumi.Input['ZeroTrustTunnelCloudflaredConfigConfigIngressArgs']]] ingresses: List of public hostname definitions. At least one ingress rule needs to be defined for the tunnel.
77607
78884
  :param pulumi.Input['ZeroTrustTunnelCloudflaredConfigConfigOriginRequestArgs'] origin_request: Configuration parameters for the public hostname specific connection settings between cloudflared and origin server.
77608
- :param pulumi.Input['ZeroTrustTunnelCloudflaredConfigConfigWarpRoutingArgs'] warp_routing: Enable private network access from WARP users to private network routes. This is enabled if the tunnel has an assigned route.
77609
78885
  """
77610
78886
  if ingresses is not None:
77611
78887
  pulumi.set(__self__, "ingresses", ingresses)
77612
78888
  if origin_request is not None:
77613
78889
  pulumi.set(__self__, "origin_request", origin_request)
77614
- if warp_routing is not None:
77615
- pulumi.set(__self__, "warp_routing", warp_routing)
77616
78890
 
77617
78891
  @_builtins.property
77618
78892
  @pulumi.getter
@@ -77638,18 +78912,6 @@ class ZeroTrustTunnelCloudflaredConfigConfigArgs:
77638
78912
  def origin_request(self, value: Optional[pulumi.Input['ZeroTrustTunnelCloudflaredConfigConfigOriginRequestArgs']]):
77639
78913
  pulumi.set(self, "origin_request", value)
77640
78914
 
77641
- @_builtins.property
77642
- @pulumi.getter(name="warpRouting")
77643
- def warp_routing(self) -> Optional[pulumi.Input['ZeroTrustTunnelCloudflaredConfigConfigWarpRoutingArgs']]:
77644
- """
77645
- Enable private network access from WARP users to private network routes. This is enabled if the tunnel has an assigned route.
77646
- """
77647
- return pulumi.get(self, "warp_routing")
77648
-
77649
- @warp_routing.setter
77650
- def warp_routing(self, value: Optional[pulumi.Input['ZeroTrustTunnelCloudflaredConfigConfigWarpRoutingArgs']]):
77651
- pulumi.set(self, "warp_routing", value)
77652
-
77653
78915
 
77654
78916
  if not MYPY:
77655
78917
  class ZeroTrustTunnelCloudflaredConfigConfigIngressArgsDict(TypedDict):
@@ -78452,29 +79714,6 @@ class ZeroTrustTunnelCloudflaredConfigConfigOriginRequestAccessArgs:
78452
79714
  pulumi.set(self, "required", value)
78453
79715
 
78454
79716
 
78455
- if not MYPY:
78456
- class ZeroTrustTunnelCloudflaredConfigConfigWarpRoutingArgsDict(TypedDict):
78457
- enabled: NotRequired[pulumi.Input[_builtins.bool]]
78458
- elif False:
78459
- ZeroTrustTunnelCloudflaredConfigConfigWarpRoutingArgsDict: TypeAlias = Mapping[str, Any]
78460
-
78461
- @pulumi.input_type
78462
- class ZeroTrustTunnelCloudflaredConfigConfigWarpRoutingArgs:
78463
- def __init__(__self__, *,
78464
- enabled: Optional[pulumi.Input[_builtins.bool]] = None):
78465
- if enabled is not None:
78466
- pulumi.set(__self__, "enabled", enabled)
78467
-
78468
- @_builtins.property
78469
- @pulumi.getter
78470
- def enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
78471
- return pulumi.get(self, "enabled")
78472
-
78473
- @enabled.setter
78474
- def enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
78475
- pulumi.set(self, "enabled", value)
78476
-
78477
-
78478
79717
  if not MYPY:
78479
79718
  class ZeroTrustTunnelCloudflaredConnectionArgsDict(TypedDict):
78480
79719
  client_id: NotRequired[pulumi.Input[_builtins.str]]
@@ -83109,6 +84348,516 @@ class GetMagicTransitSiteFilterArgs:
83109
84348
  pulumi.set(self, "connectorid", value)
83110
84349
 
83111
84350
 
84351
+ if not MYPY:
84352
+ class GetOrganizationFilterArgsDict(TypedDict):
84353
+ containing: NotRequired['GetOrganizationFilterContainingArgsDict']
84354
+ ids: NotRequired[Sequence[_builtins.str]]
84355
+ """
84356
+ Only return organizations with the specified IDs (ex. id=foo&id=bar). Send multiple elements
84357
+ by repeating the query value.
84358
+ """
84359
+ name: NotRequired['GetOrganizationFilterNameArgsDict']
84360
+ page_size: NotRequired[_builtins.int]
84361
+ """
84362
+ The amount of items to return. Defaults to 10.
84363
+ """
84364
+ page_token: NotRequired[_builtins.str]
84365
+ """
84366
+ An opaque token returned from the last list response that when
84367
+ provided will retrieve the next page.
84368
+ """
84369
+ parent: NotRequired['GetOrganizationFilterParentArgsDict']
84370
+ elif False:
84371
+ GetOrganizationFilterArgsDict: TypeAlias = Mapping[str, Any]
84372
+
84373
+ @pulumi.input_type
84374
+ class GetOrganizationFilterArgs:
84375
+ def __init__(__self__, *,
84376
+ containing: Optional['GetOrganizationFilterContainingArgs'] = None,
84377
+ ids: Optional[Sequence[_builtins.str]] = None,
84378
+ name: Optional['GetOrganizationFilterNameArgs'] = None,
84379
+ page_size: Optional[_builtins.int] = None,
84380
+ page_token: Optional[_builtins.str] = None,
84381
+ parent: Optional['GetOrganizationFilterParentArgs'] = None):
84382
+ """
84383
+ :param Sequence[_builtins.str] ids: Only return organizations with the specified IDs (ex. id=foo&id=bar). Send multiple elements
84384
+ by repeating the query value.
84385
+ :param _builtins.int page_size: The amount of items to return. Defaults to 10.
84386
+ :param _builtins.str page_token: An opaque token returned from the last list response that when
84387
+ provided will retrieve the next page.
84388
+ """
84389
+ if containing is not None:
84390
+ pulumi.set(__self__, "containing", containing)
84391
+ if ids is not None:
84392
+ pulumi.set(__self__, "ids", ids)
84393
+ if name is not None:
84394
+ pulumi.set(__self__, "name", name)
84395
+ if page_size is not None:
84396
+ pulumi.set(__self__, "page_size", page_size)
84397
+ if page_token is not None:
84398
+ pulumi.set(__self__, "page_token", page_token)
84399
+ if parent is not None:
84400
+ pulumi.set(__self__, "parent", parent)
84401
+
84402
+ @_builtins.property
84403
+ @pulumi.getter
84404
+ def containing(self) -> Optional['GetOrganizationFilterContainingArgs']:
84405
+ return pulumi.get(self, "containing")
84406
+
84407
+ @containing.setter
84408
+ def containing(self, value: Optional['GetOrganizationFilterContainingArgs']):
84409
+ pulumi.set(self, "containing", value)
84410
+
84411
+ @_builtins.property
84412
+ @pulumi.getter
84413
+ def ids(self) -> Optional[Sequence[_builtins.str]]:
84414
+ """
84415
+ Only return organizations with the specified IDs (ex. id=foo&id=bar). Send multiple elements
84416
+ by repeating the query value.
84417
+ """
84418
+ return pulumi.get(self, "ids")
84419
+
84420
+ @ids.setter
84421
+ def ids(self, value: Optional[Sequence[_builtins.str]]):
84422
+ pulumi.set(self, "ids", value)
84423
+
84424
+ @_builtins.property
84425
+ @pulumi.getter
84426
+ def name(self) -> Optional['GetOrganizationFilterNameArgs']:
84427
+ return pulumi.get(self, "name")
84428
+
84429
+ @name.setter
84430
+ def name(self, value: Optional['GetOrganizationFilterNameArgs']):
84431
+ pulumi.set(self, "name", value)
84432
+
84433
+ @_builtins.property
84434
+ @pulumi.getter(name="pageSize")
84435
+ def page_size(self) -> Optional[_builtins.int]:
84436
+ """
84437
+ The amount of items to return. Defaults to 10.
84438
+ """
84439
+ return pulumi.get(self, "page_size")
84440
+
84441
+ @page_size.setter
84442
+ def page_size(self, value: Optional[_builtins.int]):
84443
+ pulumi.set(self, "page_size", value)
84444
+
84445
+ @_builtins.property
84446
+ @pulumi.getter(name="pageToken")
84447
+ def page_token(self) -> Optional[_builtins.str]:
84448
+ """
84449
+ An opaque token returned from the last list response that when
84450
+ provided will retrieve the next page.
84451
+ """
84452
+ return pulumi.get(self, "page_token")
84453
+
84454
+ @page_token.setter
84455
+ def page_token(self, value: Optional[_builtins.str]):
84456
+ pulumi.set(self, "page_token", value)
84457
+
84458
+ @_builtins.property
84459
+ @pulumi.getter
84460
+ def parent(self) -> Optional['GetOrganizationFilterParentArgs']:
84461
+ return pulumi.get(self, "parent")
84462
+
84463
+ @parent.setter
84464
+ def parent(self, value: Optional['GetOrganizationFilterParentArgs']):
84465
+ pulumi.set(self, "parent", value)
84466
+
84467
+
84468
+ if not MYPY:
84469
+ class GetOrganizationFilterContainingArgsDict(TypedDict):
84470
+ account: NotRequired[_builtins.str]
84471
+ """
84472
+ Filter the list of organizations to the ones that contain this particular
84473
+ account.
84474
+ """
84475
+ organization: NotRequired[_builtins.str]
84476
+ """
84477
+ Filter the list of organizations to the ones that contain this particular
84478
+ organization.
84479
+ """
84480
+ user: NotRequired[_builtins.str]
84481
+ """
84482
+ Filter the list of organizations to the ones that contain this particular
84483
+ user.
84484
+ """
84485
+ elif False:
84486
+ GetOrganizationFilterContainingArgsDict: TypeAlias = Mapping[str, Any]
84487
+
84488
+ @pulumi.input_type
84489
+ class GetOrganizationFilterContainingArgs:
84490
+ def __init__(__self__, *,
84491
+ account: Optional[_builtins.str] = None,
84492
+ organization: Optional[_builtins.str] = None,
84493
+ user: Optional[_builtins.str] = None):
84494
+ """
84495
+ :param _builtins.str account: Filter the list of organizations to the ones that contain this particular
84496
+ account.
84497
+ :param _builtins.str organization: Filter the list of organizations to the ones that contain this particular
84498
+ organization.
84499
+ :param _builtins.str user: Filter the list of organizations to the ones that contain this particular
84500
+ user.
84501
+ """
84502
+ if account is not None:
84503
+ pulumi.set(__self__, "account", account)
84504
+ if organization is not None:
84505
+ pulumi.set(__self__, "organization", organization)
84506
+ if user is not None:
84507
+ pulumi.set(__self__, "user", user)
84508
+
84509
+ @_builtins.property
84510
+ @pulumi.getter
84511
+ def account(self) -> Optional[_builtins.str]:
84512
+ """
84513
+ Filter the list of organizations to the ones that contain this particular
84514
+ account.
84515
+ """
84516
+ return pulumi.get(self, "account")
84517
+
84518
+ @account.setter
84519
+ def account(self, value: Optional[_builtins.str]):
84520
+ pulumi.set(self, "account", value)
84521
+
84522
+ @_builtins.property
84523
+ @pulumi.getter
84524
+ def organization(self) -> Optional[_builtins.str]:
84525
+ """
84526
+ Filter the list of organizations to the ones that contain this particular
84527
+ organization.
84528
+ """
84529
+ return pulumi.get(self, "organization")
84530
+
84531
+ @organization.setter
84532
+ def organization(self, value: Optional[_builtins.str]):
84533
+ pulumi.set(self, "organization", value)
84534
+
84535
+ @_builtins.property
84536
+ @pulumi.getter
84537
+ def user(self) -> Optional[_builtins.str]:
84538
+ """
84539
+ Filter the list of organizations to the ones that contain this particular
84540
+ user.
84541
+ """
84542
+ return pulumi.get(self, "user")
84543
+
84544
+ @user.setter
84545
+ def user(self, value: Optional[_builtins.str]):
84546
+ pulumi.set(self, "user", value)
84547
+
84548
+
84549
+ if not MYPY:
84550
+ class GetOrganizationFilterNameArgsDict(TypedDict):
84551
+ contains: NotRequired[_builtins.str]
84552
+ """
84553
+ (case-insensitive) Filter the list of organizations to where the name contains a particular
84554
+ string.
84555
+ """
84556
+ ends_with: NotRequired[_builtins.str]
84557
+ """
84558
+ (case-insensitive) Filter the list of organizations to where the name ends with a particular
84559
+ string.
84560
+ """
84561
+ starts_with: NotRequired[_builtins.str]
84562
+ """
84563
+ (case-insensitive) Filter the list of organizations to where the name starts with a
84564
+ particular string.
84565
+ """
84566
+ elif False:
84567
+ GetOrganizationFilterNameArgsDict: TypeAlias = Mapping[str, Any]
84568
+
84569
+ @pulumi.input_type
84570
+ class GetOrganizationFilterNameArgs:
84571
+ def __init__(__self__, *,
84572
+ contains: Optional[_builtins.str] = None,
84573
+ ends_with: Optional[_builtins.str] = None,
84574
+ starts_with: Optional[_builtins.str] = None):
84575
+ """
84576
+ :param _builtins.str contains: (case-insensitive) Filter the list of organizations to where the name contains a particular
84577
+ string.
84578
+ :param _builtins.str ends_with: (case-insensitive) Filter the list of organizations to where the name ends with a particular
84579
+ string.
84580
+ :param _builtins.str starts_with: (case-insensitive) Filter the list of organizations to where the name starts with a
84581
+ particular string.
84582
+ """
84583
+ if contains is not None:
84584
+ pulumi.set(__self__, "contains", contains)
84585
+ if ends_with is not None:
84586
+ pulumi.set(__self__, "ends_with", ends_with)
84587
+ if starts_with is not None:
84588
+ pulumi.set(__self__, "starts_with", starts_with)
84589
+
84590
+ @_builtins.property
84591
+ @pulumi.getter
84592
+ def contains(self) -> Optional[_builtins.str]:
84593
+ """
84594
+ (case-insensitive) Filter the list of organizations to where the name contains a particular
84595
+ string.
84596
+ """
84597
+ return pulumi.get(self, "contains")
84598
+
84599
+ @contains.setter
84600
+ def contains(self, value: Optional[_builtins.str]):
84601
+ pulumi.set(self, "contains", value)
84602
+
84603
+ @_builtins.property
84604
+ @pulumi.getter(name="endsWith")
84605
+ def ends_with(self) -> Optional[_builtins.str]:
84606
+ """
84607
+ (case-insensitive) Filter the list of organizations to where the name ends with a particular
84608
+ string.
84609
+ """
84610
+ return pulumi.get(self, "ends_with")
84611
+
84612
+ @ends_with.setter
84613
+ def ends_with(self, value: Optional[_builtins.str]):
84614
+ pulumi.set(self, "ends_with", value)
84615
+
84616
+ @_builtins.property
84617
+ @pulumi.getter(name="startsWith")
84618
+ def starts_with(self) -> Optional[_builtins.str]:
84619
+ """
84620
+ (case-insensitive) Filter the list of organizations to where the name starts with a
84621
+ particular string.
84622
+ """
84623
+ return pulumi.get(self, "starts_with")
84624
+
84625
+ @starts_with.setter
84626
+ def starts_with(self, value: Optional[_builtins.str]):
84627
+ pulumi.set(self, "starts_with", value)
84628
+
84629
+
84630
+ if not MYPY:
84631
+ class GetOrganizationFilterParentArgsDict(TypedDict):
84632
+ id: NotRequired[_builtins.str]
84633
+ """
84634
+ Filter the list of organizations to the ones that are a sub-organization
84635
+ of the specified organization.
84636
+ """
84637
+ elif False:
84638
+ GetOrganizationFilterParentArgsDict: TypeAlias = Mapping[str, Any]
84639
+
84640
+ @pulumi.input_type
84641
+ class GetOrganizationFilterParentArgs:
84642
+ def __init__(__self__, *,
84643
+ id: Optional[_builtins.str] = None):
84644
+ """
84645
+ :param _builtins.str id: Filter the list of organizations to the ones that are a sub-organization
84646
+ of the specified organization.
84647
+ """
84648
+ if id is not None:
84649
+ pulumi.set(__self__, "id", id)
84650
+
84651
+ @_builtins.property
84652
+ @pulumi.getter
84653
+ def id(self) -> Optional[_builtins.str]:
84654
+ """
84655
+ Filter the list of organizations to the ones that are a sub-organization
84656
+ of the specified organization.
84657
+ """
84658
+ return pulumi.get(self, "id")
84659
+
84660
+ @id.setter
84661
+ def id(self, value: Optional[_builtins.str]):
84662
+ pulumi.set(self, "id", value)
84663
+
84664
+
84665
+ if not MYPY:
84666
+ class GetOrganizationsContainingArgsDict(TypedDict):
84667
+ account: NotRequired[_builtins.str]
84668
+ """
84669
+ Filter the list of organizations to the ones that contain this particular
84670
+ account.
84671
+ """
84672
+ organization: NotRequired[_builtins.str]
84673
+ """
84674
+ Filter the list of organizations to the ones that contain this particular
84675
+ organization.
84676
+ """
84677
+ user: NotRequired[_builtins.str]
84678
+ """
84679
+ Filter the list of organizations to the ones that contain this particular
84680
+ user.
84681
+ """
84682
+ elif False:
84683
+ GetOrganizationsContainingArgsDict: TypeAlias = Mapping[str, Any]
84684
+
84685
+ @pulumi.input_type
84686
+ class GetOrganizationsContainingArgs:
84687
+ def __init__(__self__, *,
84688
+ account: Optional[_builtins.str] = None,
84689
+ organization: Optional[_builtins.str] = None,
84690
+ user: Optional[_builtins.str] = None):
84691
+ """
84692
+ :param _builtins.str account: Filter the list of organizations to the ones that contain this particular
84693
+ account.
84694
+ :param _builtins.str organization: Filter the list of organizations to the ones that contain this particular
84695
+ organization.
84696
+ :param _builtins.str user: Filter the list of organizations to the ones that contain this particular
84697
+ user.
84698
+ """
84699
+ if account is not None:
84700
+ pulumi.set(__self__, "account", account)
84701
+ if organization is not None:
84702
+ pulumi.set(__self__, "organization", organization)
84703
+ if user is not None:
84704
+ pulumi.set(__self__, "user", user)
84705
+
84706
+ @_builtins.property
84707
+ @pulumi.getter
84708
+ def account(self) -> Optional[_builtins.str]:
84709
+ """
84710
+ Filter the list of organizations to the ones that contain this particular
84711
+ account.
84712
+ """
84713
+ return pulumi.get(self, "account")
84714
+
84715
+ @account.setter
84716
+ def account(self, value: Optional[_builtins.str]):
84717
+ pulumi.set(self, "account", value)
84718
+
84719
+ @_builtins.property
84720
+ @pulumi.getter
84721
+ def organization(self) -> Optional[_builtins.str]:
84722
+ """
84723
+ Filter the list of organizations to the ones that contain this particular
84724
+ organization.
84725
+ """
84726
+ return pulumi.get(self, "organization")
84727
+
84728
+ @organization.setter
84729
+ def organization(self, value: Optional[_builtins.str]):
84730
+ pulumi.set(self, "organization", value)
84731
+
84732
+ @_builtins.property
84733
+ @pulumi.getter
84734
+ def user(self) -> Optional[_builtins.str]:
84735
+ """
84736
+ Filter the list of organizations to the ones that contain this particular
84737
+ user.
84738
+ """
84739
+ return pulumi.get(self, "user")
84740
+
84741
+ @user.setter
84742
+ def user(self, value: Optional[_builtins.str]):
84743
+ pulumi.set(self, "user", value)
84744
+
84745
+
84746
+ if not MYPY:
84747
+ class GetOrganizationsNameArgsDict(TypedDict):
84748
+ contains: NotRequired[_builtins.str]
84749
+ """
84750
+ (case-insensitive) Filter the list of organizations to where the name contains a particular
84751
+ string.
84752
+ """
84753
+ ends_with: NotRequired[_builtins.str]
84754
+ """
84755
+ (case-insensitive) Filter the list of organizations to where the name ends with a particular
84756
+ string.
84757
+ """
84758
+ starts_with: NotRequired[_builtins.str]
84759
+ """
84760
+ (case-insensitive) Filter the list of organizations to where the name starts with a
84761
+ particular string.
84762
+ """
84763
+ elif False:
84764
+ GetOrganizationsNameArgsDict: TypeAlias = Mapping[str, Any]
84765
+
84766
+ @pulumi.input_type
84767
+ class GetOrganizationsNameArgs:
84768
+ def __init__(__self__, *,
84769
+ contains: Optional[_builtins.str] = None,
84770
+ ends_with: Optional[_builtins.str] = None,
84771
+ starts_with: Optional[_builtins.str] = None):
84772
+ """
84773
+ :param _builtins.str contains: (case-insensitive) Filter the list of organizations to where the name contains a particular
84774
+ string.
84775
+ :param _builtins.str ends_with: (case-insensitive) Filter the list of organizations to where the name ends with a particular
84776
+ string.
84777
+ :param _builtins.str starts_with: (case-insensitive) Filter the list of organizations to where the name starts with a
84778
+ particular string.
84779
+ """
84780
+ if contains is not None:
84781
+ pulumi.set(__self__, "contains", contains)
84782
+ if ends_with is not None:
84783
+ pulumi.set(__self__, "ends_with", ends_with)
84784
+ if starts_with is not None:
84785
+ pulumi.set(__self__, "starts_with", starts_with)
84786
+
84787
+ @_builtins.property
84788
+ @pulumi.getter
84789
+ def contains(self) -> Optional[_builtins.str]:
84790
+ """
84791
+ (case-insensitive) Filter the list of organizations to where the name contains a particular
84792
+ string.
84793
+ """
84794
+ return pulumi.get(self, "contains")
84795
+
84796
+ @contains.setter
84797
+ def contains(self, value: Optional[_builtins.str]):
84798
+ pulumi.set(self, "contains", value)
84799
+
84800
+ @_builtins.property
84801
+ @pulumi.getter(name="endsWith")
84802
+ def ends_with(self) -> Optional[_builtins.str]:
84803
+ """
84804
+ (case-insensitive) Filter the list of organizations to where the name ends with a particular
84805
+ string.
84806
+ """
84807
+ return pulumi.get(self, "ends_with")
84808
+
84809
+ @ends_with.setter
84810
+ def ends_with(self, value: Optional[_builtins.str]):
84811
+ pulumi.set(self, "ends_with", value)
84812
+
84813
+ @_builtins.property
84814
+ @pulumi.getter(name="startsWith")
84815
+ def starts_with(self) -> Optional[_builtins.str]:
84816
+ """
84817
+ (case-insensitive) Filter the list of organizations to where the name starts with a
84818
+ particular string.
84819
+ """
84820
+ return pulumi.get(self, "starts_with")
84821
+
84822
+ @starts_with.setter
84823
+ def starts_with(self, value: Optional[_builtins.str]):
84824
+ pulumi.set(self, "starts_with", value)
84825
+
84826
+
84827
+ if not MYPY:
84828
+ class GetOrganizationsParentArgsDict(TypedDict):
84829
+ id: _builtins.str
84830
+ """
84831
+ Filter the list of organizations to the ones that are a sub-organization
84832
+ of the specified organization.
84833
+ """
84834
+ elif False:
84835
+ GetOrganizationsParentArgsDict: TypeAlias = Mapping[str, Any]
84836
+
84837
+ @pulumi.input_type
84838
+ class GetOrganizationsParentArgs:
84839
+ def __init__(__self__, *,
84840
+ id: _builtins.str):
84841
+ """
84842
+ :param _builtins.str id: Filter the list of organizations to the ones that are a sub-organization
84843
+ of the specified organization.
84844
+ """
84845
+ pulumi.set(__self__, "id", id)
84846
+
84847
+ @_builtins.property
84848
+ @pulumi.getter
84849
+ def id(self) -> _builtins.str:
84850
+ """
84851
+ Filter the list of organizations to the ones that are a sub-organization
84852
+ of the specified organization.
84853
+ """
84854
+ return pulumi.get(self, "id")
84855
+
84856
+ @id.setter
84857
+ def id(self, value: _builtins.str):
84858
+ pulumi.set(self, "id", value)
84859
+
84860
+
83112
84861
  if not MYPY:
83113
84862
  class GetOriginCaCertificateFilterArgsDict(TypedDict):
83114
84863
  zone_id: _builtins.str
@@ -84248,6 +85997,75 @@ class GetZeroTrustAccessServiceTokenFilterArgs:
84248
85997
  pulumi.set(self, "search", value)
84249
85998
 
84250
85999
 
86000
+ if not MYPY:
86001
+ class GetZeroTrustDexTestTargetPolicyArgsDict(TypedDict):
86002
+ default: _builtins.bool
86003
+ """
86004
+ Whether the DEX rule is the account default
86005
+ """
86006
+ id: _builtins.str
86007
+ """
86008
+ The id of the DEX rule
86009
+ """
86010
+ name: _builtins.str
86011
+ """
86012
+ The name of the DEX rule
86013
+ """
86014
+ elif False:
86015
+ GetZeroTrustDexTestTargetPolicyArgsDict: TypeAlias = Mapping[str, Any]
86016
+
86017
+ @pulumi.input_type
86018
+ class GetZeroTrustDexTestTargetPolicyArgs:
86019
+ def __init__(__self__, *,
86020
+ default: _builtins.bool,
86021
+ id: _builtins.str,
86022
+ name: _builtins.str):
86023
+ """
86024
+ :param _builtins.bool default: Whether the DEX rule is the account default
86025
+ :param _builtins.str id: The id of the DEX rule
86026
+ :param _builtins.str name: The name of the DEX rule
86027
+ """
86028
+ pulumi.set(__self__, "default", default)
86029
+ pulumi.set(__self__, "id", id)
86030
+ pulumi.set(__self__, "name", name)
86031
+
86032
+ @_builtins.property
86033
+ @pulumi.getter
86034
+ def default(self) -> _builtins.bool:
86035
+ """
86036
+ Whether the DEX rule is the account default
86037
+ """
86038
+ return pulumi.get(self, "default")
86039
+
86040
+ @default.setter
86041
+ def default(self, value: _builtins.bool):
86042
+ pulumi.set(self, "default", value)
86043
+
86044
+ @_builtins.property
86045
+ @pulumi.getter
86046
+ def id(self) -> _builtins.str:
86047
+ """
86048
+ The id of the DEX rule
86049
+ """
86050
+ return pulumi.get(self, "id")
86051
+
86052
+ @id.setter
86053
+ def id(self, value: _builtins.str):
86054
+ pulumi.set(self, "id", value)
86055
+
86056
+ @_builtins.property
86057
+ @pulumi.getter
86058
+ def name(self) -> _builtins.str:
86059
+ """
86060
+ The name of the DEX rule
86061
+ """
86062
+ return pulumi.get(self, "name")
86063
+
86064
+ @name.setter
86065
+ def name(self, value: _builtins.str):
86066
+ pulumi.set(self, "name", value)
86067
+
86068
+
84251
86069
  if not MYPY:
84252
86070
  class GetZeroTrustListFilterArgsDict(TypedDict):
84253
86071
  type: NotRequired[_builtins.str]