pulumiverse-scaleway 1.26.0a1742897201__py3-none-any.whl → 1.26.0a1743166124__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 (66) hide show
  1. pulumiverse_scaleway/__init__.py +105 -0
  2. pulumiverse_scaleway/_inputs.py +663 -0
  3. pulumiverse_scaleway/apple_silicon_server.py +105 -0
  4. pulumiverse_scaleway/applesilicon/server.py +105 -0
  5. pulumiverse_scaleway/domain/__init__.py +1 -0
  6. pulumiverse_scaleway/domain/_inputs.py +2697 -0
  7. pulumiverse_scaleway/domain/outputs.py +2145 -0
  8. pulumiverse_scaleway/domain/registration.py +777 -0
  9. pulumiverse_scaleway/edge_services_backend_stage.py +472 -0
  10. pulumiverse_scaleway/edge_services_cache_stage.py +490 -0
  11. pulumiverse_scaleway/edge_services_dns_stage.py +516 -0
  12. pulumiverse_scaleway/edge_services_head_stage.py +258 -0
  13. pulumiverse_scaleway/edge_services_pipeline.py +436 -0
  14. pulumiverse_scaleway/edge_services_plan.py +239 -0
  15. pulumiverse_scaleway/edge_services_route_stage.py +422 -0
  16. pulumiverse_scaleway/edge_services_tls_stage.py +546 -0
  17. pulumiverse_scaleway/edge_services_waf_stage.py +444 -0
  18. pulumiverse_scaleway/elasticmetal/ip.py +13 -7
  19. pulumiverse_scaleway/flexible_ip.py +13 -7
  20. pulumiverse_scaleway/get_lb_frontend.py +12 -1
  21. pulumiverse_scaleway/get_lb_route.py +12 -1
  22. pulumiverse_scaleway/get_secret.py +15 -4
  23. pulumiverse_scaleway/get_vpc_public_gateway.py +34 -1
  24. pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +8 -0
  25. pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +8 -0
  26. pulumiverse_scaleway/loadbalancer_backend.py +2 -2
  27. pulumiverse_scaleway/loadbalancer_frontend.py +47 -0
  28. pulumiverse_scaleway/loadbalancer_route.py +48 -1
  29. pulumiverse_scaleway/loadbalancers/backend.py +2 -2
  30. pulumiverse_scaleway/loadbalancers/frontend.py +47 -0
  31. pulumiverse_scaleway/loadbalancers/get_frontend.py +12 -1
  32. pulumiverse_scaleway/loadbalancers/get_route.py +12 -1
  33. pulumiverse_scaleway/loadbalancers/outputs.py +13 -2
  34. pulumiverse_scaleway/loadbalancers/route.py +48 -1
  35. pulumiverse_scaleway/network/__init__.py +1 -0
  36. pulumiverse_scaleway/network/_inputs.py +194 -0
  37. pulumiverse_scaleway/network/acl.py +415 -0
  38. pulumiverse_scaleway/network/gateway_network.py +104 -122
  39. pulumiverse_scaleway/network/get_public_gateway.py +34 -1
  40. pulumiverse_scaleway/network/get_public_gateway_dhcp.py +8 -0
  41. pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +8 -0
  42. pulumiverse_scaleway/network/outputs.py +139 -0
  43. pulumiverse_scaleway/network/public_gateway.py +124 -21
  44. pulumiverse_scaleway/network/public_gateway_dhcp.py +8 -0
  45. pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +8 -0
  46. pulumiverse_scaleway/outputs.py +662 -2
  47. pulumiverse_scaleway/pulumi-plugin.json +1 -1
  48. pulumiverse_scaleway/secret.py +22 -2
  49. pulumiverse_scaleway/secret_version.py +6 -6
  50. pulumiverse_scaleway/secrets/_inputs.py +154 -0
  51. pulumiverse_scaleway/secrets/get_secret.py +15 -4
  52. pulumiverse_scaleway/secrets/outputs.py +200 -0
  53. pulumiverse_scaleway/secrets/secret.py +22 -2
  54. pulumiverse_scaleway/tem/__init__.py +2 -0
  55. pulumiverse_scaleway/tem/blocked_list.py +442 -0
  56. pulumiverse_scaleway/tem/domain.py +7 -0
  57. pulumiverse_scaleway/tem/get_offer_subscription.py +254 -0
  58. pulumiverse_scaleway/tem_domain.py +7 -0
  59. pulumiverse_scaleway/vpc_gateway_network.py +104 -122
  60. pulumiverse_scaleway/vpc_public_gateway.py +124 -21
  61. pulumiverse_scaleway/vpc_public_gateway_dhcp.py +8 -0
  62. pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +8 -0
  63. {pulumiverse_scaleway-1.26.0a1742897201.dist-info → pulumiverse_scaleway-1.26.0a1743166124.dist-info}/METADATA +1 -1
  64. {pulumiverse_scaleway-1.26.0a1742897201.dist-info → pulumiverse_scaleway-1.26.0a1743166124.dist-info}/RECORD +66 -53
  65. {pulumiverse_scaleway-1.26.0a1742897201.dist-info → pulumiverse_scaleway-1.26.0a1743166124.dist-info}/WHEEL +1 -1
  66. {pulumiverse_scaleway-1.26.0a1742897201.dist-info → pulumiverse_scaleway-1.26.0a1743166124.dist-info}/top_level.txt +0 -0
@@ -69,6 +69,22 @@ __all__ = [
69
69
  'DomainRecordViewArgsDict',
70
70
  'DomainRecordWeightedArgs',
71
71
  'DomainRecordWeightedArgsDict',
72
+ 'EdgeServicesBackendStageLbBackendConfigArgs',
73
+ 'EdgeServicesBackendStageLbBackendConfigArgsDict',
74
+ 'EdgeServicesBackendStageLbBackendConfigLbConfigArgs',
75
+ 'EdgeServicesBackendStageLbBackendConfigLbConfigArgsDict',
76
+ 'EdgeServicesBackendStageS3BackendConfigArgs',
77
+ 'EdgeServicesBackendStageS3BackendConfigArgsDict',
78
+ 'EdgeServicesCacheStagePurgeRequestArgs',
79
+ 'EdgeServicesCacheStagePurgeRequestArgsDict',
80
+ 'EdgeServicesRouteStageRuleArgs',
81
+ 'EdgeServicesRouteStageRuleArgsDict',
82
+ 'EdgeServicesRouteStageRuleRuleHttpMatchArgs',
83
+ 'EdgeServicesRouteStageRuleRuleHttpMatchArgsDict',
84
+ 'EdgeServicesRouteStageRuleRuleHttpMatchPathFilterArgs',
85
+ 'EdgeServicesRouteStageRuleRuleHttpMatchPathFilterArgsDict',
86
+ 'EdgeServicesTlsStageSecretArgs',
87
+ 'EdgeServicesTlsStageSecretArgsDict',
72
88
  'FunctionTriggerNatsArgs',
73
89
  'FunctionTriggerNatsArgsDict',
74
90
  'FunctionTriggerSqsArgs',
@@ -201,6 +217,8 @@ __all__ = [
201
217
  'RedisClusterPublicNetworkArgsDict',
202
218
  'SecretEphemeralPolicyArgs',
203
219
  'SecretEphemeralPolicyArgsDict',
220
+ 'SecretVersionArgs',
221
+ 'SecretVersionArgsDict',
204
222
  'TemDomainReputationArgs',
205
223
  'TemDomainReputationArgsDict',
206
224
  'VpcGatewayNetworkIpamConfigArgs',
@@ -2677,6 +2695,499 @@ class DomainRecordWeightedArgs:
2677
2695
  pulumi.set(self, "weight", value)
2678
2696
 
2679
2697
 
2698
+ if not MYPY:
2699
+ class EdgeServicesBackendStageLbBackendConfigArgsDict(TypedDict):
2700
+ lb_config: NotRequired[pulumi.Input['EdgeServicesBackendStageLbBackendConfigLbConfigArgsDict']]
2701
+ """
2702
+ The Load Balancer config.
2703
+ """
2704
+ elif False:
2705
+ EdgeServicesBackendStageLbBackendConfigArgsDict: TypeAlias = Mapping[str, Any]
2706
+
2707
+ @pulumi.input_type
2708
+ class EdgeServicesBackendStageLbBackendConfigArgs:
2709
+ def __init__(__self__, *,
2710
+ lb_config: Optional[pulumi.Input['EdgeServicesBackendStageLbBackendConfigLbConfigArgs']] = None):
2711
+ """
2712
+ :param pulumi.Input['EdgeServicesBackendStageLbBackendConfigLbConfigArgs'] lb_config: The Load Balancer config.
2713
+ """
2714
+ if lb_config is not None:
2715
+ pulumi.set(__self__, "lb_config", lb_config)
2716
+
2717
+ @property
2718
+ @pulumi.getter(name="lbConfig")
2719
+ def lb_config(self) -> Optional[pulumi.Input['EdgeServicesBackendStageLbBackendConfigLbConfigArgs']]:
2720
+ """
2721
+ The Load Balancer config.
2722
+ """
2723
+ return pulumi.get(self, "lb_config")
2724
+
2725
+ @lb_config.setter
2726
+ def lb_config(self, value: Optional[pulumi.Input['EdgeServicesBackendStageLbBackendConfigLbConfigArgs']]):
2727
+ pulumi.set(self, "lb_config", value)
2728
+
2729
+
2730
+ if not MYPY:
2731
+ class EdgeServicesBackendStageLbBackendConfigLbConfigArgsDict(TypedDict):
2732
+ domain_name: NotRequired[pulumi.Input[str]]
2733
+ """
2734
+ The Fully Qualified Domain Name (in the format subdomain.example.com) to use in HTTP requests sent towards your Load Balancer.
2735
+ """
2736
+ frontend_id: NotRequired[pulumi.Input[str]]
2737
+ """
2738
+ The ID of the frontend.
2739
+ """
2740
+ id: NotRequired[pulumi.Input[str]]
2741
+ """
2742
+ The ID of the Load Balancer.
2743
+ """
2744
+ is_ssl: NotRequired[pulumi.Input[bool]]
2745
+ """
2746
+ Defines whether the Load Balancer's frontend handles SSL connections.
2747
+ """
2748
+ zone: NotRequired[pulumi.Input[str]]
2749
+ """
2750
+ `zone`) The zone of the Load Balancer.
2751
+ """
2752
+ elif False:
2753
+ EdgeServicesBackendStageLbBackendConfigLbConfigArgsDict: TypeAlias = Mapping[str, Any]
2754
+
2755
+ @pulumi.input_type
2756
+ class EdgeServicesBackendStageLbBackendConfigLbConfigArgs:
2757
+ def __init__(__self__, *,
2758
+ domain_name: Optional[pulumi.Input[str]] = None,
2759
+ frontend_id: Optional[pulumi.Input[str]] = None,
2760
+ id: Optional[pulumi.Input[str]] = None,
2761
+ is_ssl: Optional[pulumi.Input[bool]] = None,
2762
+ zone: Optional[pulumi.Input[str]] = None):
2763
+ """
2764
+ :param pulumi.Input[str] domain_name: The Fully Qualified Domain Name (in the format subdomain.example.com) to use in HTTP requests sent towards your Load Balancer.
2765
+ :param pulumi.Input[str] frontend_id: The ID of the frontend.
2766
+ :param pulumi.Input[str] id: The ID of the Load Balancer.
2767
+ :param pulumi.Input[bool] is_ssl: Defines whether the Load Balancer's frontend handles SSL connections.
2768
+ :param pulumi.Input[str] zone: `zone`) The zone of the Load Balancer.
2769
+ """
2770
+ if domain_name is not None:
2771
+ pulumi.set(__self__, "domain_name", domain_name)
2772
+ if frontend_id is not None:
2773
+ pulumi.set(__self__, "frontend_id", frontend_id)
2774
+ if id is not None:
2775
+ pulumi.set(__self__, "id", id)
2776
+ if is_ssl is not None:
2777
+ pulumi.set(__self__, "is_ssl", is_ssl)
2778
+ if zone is not None:
2779
+ pulumi.set(__self__, "zone", zone)
2780
+
2781
+ @property
2782
+ @pulumi.getter(name="domainName")
2783
+ def domain_name(self) -> Optional[pulumi.Input[str]]:
2784
+ """
2785
+ The Fully Qualified Domain Name (in the format subdomain.example.com) to use in HTTP requests sent towards your Load Balancer.
2786
+ """
2787
+ return pulumi.get(self, "domain_name")
2788
+
2789
+ @domain_name.setter
2790
+ def domain_name(self, value: Optional[pulumi.Input[str]]):
2791
+ pulumi.set(self, "domain_name", value)
2792
+
2793
+ @property
2794
+ @pulumi.getter(name="frontendId")
2795
+ def frontend_id(self) -> Optional[pulumi.Input[str]]:
2796
+ """
2797
+ The ID of the frontend.
2798
+ """
2799
+ return pulumi.get(self, "frontend_id")
2800
+
2801
+ @frontend_id.setter
2802
+ def frontend_id(self, value: Optional[pulumi.Input[str]]):
2803
+ pulumi.set(self, "frontend_id", value)
2804
+
2805
+ @property
2806
+ @pulumi.getter
2807
+ def id(self) -> Optional[pulumi.Input[str]]:
2808
+ """
2809
+ The ID of the Load Balancer.
2810
+ """
2811
+ return pulumi.get(self, "id")
2812
+
2813
+ @id.setter
2814
+ def id(self, value: Optional[pulumi.Input[str]]):
2815
+ pulumi.set(self, "id", value)
2816
+
2817
+ @property
2818
+ @pulumi.getter(name="isSsl")
2819
+ def is_ssl(self) -> Optional[pulumi.Input[bool]]:
2820
+ """
2821
+ Defines whether the Load Balancer's frontend handles SSL connections.
2822
+ """
2823
+ return pulumi.get(self, "is_ssl")
2824
+
2825
+ @is_ssl.setter
2826
+ def is_ssl(self, value: Optional[pulumi.Input[bool]]):
2827
+ pulumi.set(self, "is_ssl", value)
2828
+
2829
+ @property
2830
+ @pulumi.getter
2831
+ def zone(self) -> Optional[pulumi.Input[str]]:
2832
+ """
2833
+ `zone`) The zone of the Load Balancer.
2834
+ """
2835
+ return pulumi.get(self, "zone")
2836
+
2837
+ @zone.setter
2838
+ def zone(self, value: Optional[pulumi.Input[str]]):
2839
+ pulumi.set(self, "zone", value)
2840
+
2841
+
2842
+ if not MYPY:
2843
+ class EdgeServicesBackendStageS3BackendConfigArgsDict(TypedDict):
2844
+ bucket_name: NotRequired[pulumi.Input[str]]
2845
+ """
2846
+ The name of the Bucket.
2847
+ """
2848
+ bucket_region: NotRequired[pulumi.Input[str]]
2849
+ """
2850
+ The region of the Bucket.
2851
+ """
2852
+ is_website: NotRequired[pulumi.Input[bool]]
2853
+ """
2854
+ Defines whether the bucket website feature is enabled.
2855
+ """
2856
+ elif False:
2857
+ EdgeServicesBackendStageS3BackendConfigArgsDict: TypeAlias = Mapping[str, Any]
2858
+
2859
+ @pulumi.input_type
2860
+ class EdgeServicesBackendStageS3BackendConfigArgs:
2861
+ def __init__(__self__, *,
2862
+ bucket_name: Optional[pulumi.Input[str]] = None,
2863
+ bucket_region: Optional[pulumi.Input[str]] = None,
2864
+ is_website: Optional[pulumi.Input[bool]] = None):
2865
+ """
2866
+ :param pulumi.Input[str] bucket_name: The name of the Bucket.
2867
+ :param pulumi.Input[str] bucket_region: The region of the Bucket.
2868
+ :param pulumi.Input[bool] is_website: Defines whether the bucket website feature is enabled.
2869
+ """
2870
+ if bucket_name is not None:
2871
+ pulumi.set(__self__, "bucket_name", bucket_name)
2872
+ if bucket_region is not None:
2873
+ pulumi.set(__self__, "bucket_region", bucket_region)
2874
+ if is_website is not None:
2875
+ pulumi.set(__self__, "is_website", is_website)
2876
+
2877
+ @property
2878
+ @pulumi.getter(name="bucketName")
2879
+ def bucket_name(self) -> Optional[pulumi.Input[str]]:
2880
+ """
2881
+ The name of the Bucket.
2882
+ """
2883
+ return pulumi.get(self, "bucket_name")
2884
+
2885
+ @bucket_name.setter
2886
+ def bucket_name(self, value: Optional[pulumi.Input[str]]):
2887
+ pulumi.set(self, "bucket_name", value)
2888
+
2889
+ @property
2890
+ @pulumi.getter(name="bucketRegion")
2891
+ def bucket_region(self) -> Optional[pulumi.Input[str]]:
2892
+ """
2893
+ The region of the Bucket.
2894
+ """
2895
+ return pulumi.get(self, "bucket_region")
2896
+
2897
+ @bucket_region.setter
2898
+ def bucket_region(self, value: Optional[pulumi.Input[str]]):
2899
+ pulumi.set(self, "bucket_region", value)
2900
+
2901
+ @property
2902
+ @pulumi.getter(name="isWebsite")
2903
+ def is_website(self) -> Optional[pulumi.Input[bool]]:
2904
+ """
2905
+ Defines whether the bucket website feature is enabled.
2906
+ """
2907
+ return pulumi.get(self, "is_website")
2908
+
2909
+ @is_website.setter
2910
+ def is_website(self, value: Optional[pulumi.Input[bool]]):
2911
+ pulumi.set(self, "is_website", value)
2912
+
2913
+
2914
+ if not MYPY:
2915
+ class EdgeServicesCacheStagePurgeRequestArgsDict(TypedDict):
2916
+ all: NotRequired[pulumi.Input[bool]]
2917
+ """
2918
+ Defines whether to purge all content.
2919
+ """
2920
+ assets: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
2921
+ """
2922
+ The list of asserts to purge.
2923
+ """
2924
+ pipeline_id: NotRequired[pulumi.Input[str]]
2925
+ """
2926
+ The pipeline ID in which the purge request will be created.
2927
+ """
2928
+ elif False:
2929
+ EdgeServicesCacheStagePurgeRequestArgsDict: TypeAlias = Mapping[str, Any]
2930
+
2931
+ @pulumi.input_type
2932
+ class EdgeServicesCacheStagePurgeRequestArgs:
2933
+ def __init__(__self__, *,
2934
+ all: Optional[pulumi.Input[bool]] = None,
2935
+ assets: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2936
+ pipeline_id: Optional[pulumi.Input[str]] = None):
2937
+ """
2938
+ :param pulumi.Input[bool] all: Defines whether to purge all content.
2939
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] assets: The list of asserts to purge.
2940
+ :param pulumi.Input[str] pipeline_id: The pipeline ID in which the purge request will be created.
2941
+ """
2942
+ if all is not None:
2943
+ pulumi.set(__self__, "all", all)
2944
+ if assets is not None:
2945
+ pulumi.set(__self__, "assets", assets)
2946
+ if pipeline_id is not None:
2947
+ pulumi.set(__self__, "pipeline_id", pipeline_id)
2948
+
2949
+ @property
2950
+ @pulumi.getter
2951
+ def all(self) -> Optional[pulumi.Input[bool]]:
2952
+ """
2953
+ Defines whether to purge all content.
2954
+ """
2955
+ return pulumi.get(self, "all")
2956
+
2957
+ @all.setter
2958
+ def all(self, value: Optional[pulumi.Input[bool]]):
2959
+ pulumi.set(self, "all", value)
2960
+
2961
+ @property
2962
+ @pulumi.getter
2963
+ def assets(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
2964
+ """
2965
+ The list of asserts to purge.
2966
+ """
2967
+ return pulumi.get(self, "assets")
2968
+
2969
+ @assets.setter
2970
+ def assets(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
2971
+ pulumi.set(self, "assets", value)
2972
+
2973
+ @property
2974
+ @pulumi.getter(name="pipelineId")
2975
+ def pipeline_id(self) -> Optional[pulumi.Input[str]]:
2976
+ """
2977
+ The pipeline ID in which the purge request will be created.
2978
+ """
2979
+ return pulumi.get(self, "pipeline_id")
2980
+
2981
+ @pipeline_id.setter
2982
+ def pipeline_id(self, value: Optional[pulumi.Input[str]]):
2983
+ pulumi.set(self, "pipeline_id", value)
2984
+
2985
+
2986
+ if not MYPY:
2987
+ class EdgeServicesRouteStageRuleArgsDict(TypedDict):
2988
+ backend_stage_id: pulumi.Input[str]
2989
+ """
2990
+ The ID of the backend stage that requests matching the rule should be forwarded to.
2991
+ """
2992
+ rule_http_match: NotRequired[pulumi.Input['EdgeServicesRouteStageRuleRuleHttpMatchArgsDict']]
2993
+ """
2994
+ The rule condition to be matched. Requests matching the condition defined here will be directly forwarded to the backend specified by the `backend_stage_id` field. Requests that do not match will be checked by the next rule's condition.
2995
+ """
2996
+ elif False:
2997
+ EdgeServicesRouteStageRuleArgsDict: TypeAlias = Mapping[str, Any]
2998
+
2999
+ @pulumi.input_type
3000
+ class EdgeServicesRouteStageRuleArgs:
3001
+ def __init__(__self__, *,
3002
+ backend_stage_id: pulumi.Input[str],
3003
+ rule_http_match: Optional[pulumi.Input['EdgeServicesRouteStageRuleRuleHttpMatchArgs']] = None):
3004
+ """
3005
+ :param pulumi.Input[str] backend_stage_id: The ID of the backend stage that requests matching the rule should be forwarded to.
3006
+ :param pulumi.Input['EdgeServicesRouteStageRuleRuleHttpMatchArgs'] rule_http_match: The rule condition to be matched. Requests matching the condition defined here will be directly forwarded to the backend specified by the `backend_stage_id` field. Requests that do not match will be checked by the next rule's condition.
3007
+ """
3008
+ pulumi.set(__self__, "backend_stage_id", backend_stage_id)
3009
+ if rule_http_match is not None:
3010
+ pulumi.set(__self__, "rule_http_match", rule_http_match)
3011
+
3012
+ @property
3013
+ @pulumi.getter(name="backendStageId")
3014
+ def backend_stage_id(self) -> pulumi.Input[str]:
3015
+ """
3016
+ The ID of the backend stage that requests matching the rule should be forwarded to.
3017
+ """
3018
+ return pulumi.get(self, "backend_stage_id")
3019
+
3020
+ @backend_stage_id.setter
3021
+ def backend_stage_id(self, value: pulumi.Input[str]):
3022
+ pulumi.set(self, "backend_stage_id", value)
3023
+
3024
+ @property
3025
+ @pulumi.getter(name="ruleHttpMatch")
3026
+ def rule_http_match(self) -> Optional[pulumi.Input['EdgeServicesRouteStageRuleRuleHttpMatchArgs']]:
3027
+ """
3028
+ The rule condition to be matched. Requests matching the condition defined here will be directly forwarded to the backend specified by the `backend_stage_id` field. Requests that do not match will be checked by the next rule's condition.
3029
+ """
3030
+ return pulumi.get(self, "rule_http_match")
3031
+
3032
+ @rule_http_match.setter
3033
+ def rule_http_match(self, value: Optional[pulumi.Input['EdgeServicesRouteStageRuleRuleHttpMatchArgs']]):
3034
+ pulumi.set(self, "rule_http_match", value)
3035
+
3036
+
3037
+ if not MYPY:
3038
+ class EdgeServicesRouteStageRuleRuleHttpMatchArgsDict(TypedDict):
3039
+ method_filters: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
3040
+ """
3041
+ HTTP methods to filter for. A request using any of these methods will be considered to match the rule. Possible values are `get`, `post`, `put`, `patch`, `delete`, `head`, `options`. All methods will match if none is provided.
3042
+ """
3043
+ path_filter: NotRequired[pulumi.Input['EdgeServicesRouteStageRuleRuleHttpMatchPathFilterArgsDict']]
3044
+ """
3045
+ HTTP URL path to filter for. A request whose path matches the given filter will be considered to match the rule. All paths will match if none is provided.
3046
+ """
3047
+ elif False:
3048
+ EdgeServicesRouteStageRuleRuleHttpMatchArgsDict: TypeAlias = Mapping[str, Any]
3049
+
3050
+ @pulumi.input_type
3051
+ class EdgeServicesRouteStageRuleRuleHttpMatchArgs:
3052
+ def __init__(__self__, *,
3053
+ method_filters: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
3054
+ path_filter: Optional[pulumi.Input['EdgeServicesRouteStageRuleRuleHttpMatchPathFilterArgs']] = None):
3055
+ """
3056
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] method_filters: HTTP methods to filter for. A request using any of these methods will be considered to match the rule. Possible values are `get`, `post`, `put`, `patch`, `delete`, `head`, `options`. All methods will match if none is provided.
3057
+ :param pulumi.Input['EdgeServicesRouteStageRuleRuleHttpMatchPathFilterArgs'] path_filter: HTTP URL path to filter for. A request whose path matches the given filter will be considered to match the rule. All paths will match if none is provided.
3058
+ """
3059
+ if method_filters is not None:
3060
+ pulumi.set(__self__, "method_filters", method_filters)
3061
+ if path_filter is not None:
3062
+ pulumi.set(__self__, "path_filter", path_filter)
3063
+
3064
+ @property
3065
+ @pulumi.getter(name="methodFilters")
3066
+ def method_filters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
3067
+ """
3068
+ HTTP methods to filter for. A request using any of these methods will be considered to match the rule. Possible values are `get`, `post`, `put`, `patch`, `delete`, `head`, `options`. All methods will match if none is provided.
3069
+ """
3070
+ return pulumi.get(self, "method_filters")
3071
+
3072
+ @method_filters.setter
3073
+ def method_filters(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
3074
+ pulumi.set(self, "method_filters", value)
3075
+
3076
+ @property
3077
+ @pulumi.getter(name="pathFilter")
3078
+ def path_filter(self) -> Optional[pulumi.Input['EdgeServicesRouteStageRuleRuleHttpMatchPathFilterArgs']]:
3079
+ """
3080
+ HTTP URL path to filter for. A request whose path matches the given filter will be considered to match the rule. All paths will match if none is provided.
3081
+ """
3082
+ return pulumi.get(self, "path_filter")
3083
+
3084
+ @path_filter.setter
3085
+ def path_filter(self, value: Optional[pulumi.Input['EdgeServicesRouteStageRuleRuleHttpMatchPathFilterArgs']]):
3086
+ pulumi.set(self, "path_filter", value)
3087
+
3088
+
3089
+ if not MYPY:
3090
+ class EdgeServicesRouteStageRuleRuleHttpMatchPathFilterArgsDict(TypedDict):
3091
+ path_filter_type: pulumi.Input[str]
3092
+ """
3093
+ The type of filter to match for the HTTP URL path. For now, all path filters must be written in regex and use the `regex` type.
3094
+ """
3095
+ value: pulumi.Input[str]
3096
+ """
3097
+ The value to be matched for the HTTP URL path.
3098
+ """
3099
+ elif False:
3100
+ EdgeServicesRouteStageRuleRuleHttpMatchPathFilterArgsDict: TypeAlias = Mapping[str, Any]
3101
+
3102
+ @pulumi.input_type
3103
+ class EdgeServicesRouteStageRuleRuleHttpMatchPathFilterArgs:
3104
+ def __init__(__self__, *,
3105
+ path_filter_type: pulumi.Input[str],
3106
+ value: pulumi.Input[str]):
3107
+ """
3108
+ :param pulumi.Input[str] path_filter_type: The type of filter to match for the HTTP URL path. For now, all path filters must be written in regex and use the `regex` type.
3109
+ :param pulumi.Input[str] value: The value to be matched for the HTTP URL path.
3110
+ """
3111
+ pulumi.set(__self__, "path_filter_type", path_filter_type)
3112
+ pulumi.set(__self__, "value", value)
3113
+
3114
+ @property
3115
+ @pulumi.getter(name="pathFilterType")
3116
+ def path_filter_type(self) -> pulumi.Input[str]:
3117
+ """
3118
+ The type of filter to match for the HTTP URL path. For now, all path filters must be written in regex and use the `regex` type.
3119
+ """
3120
+ return pulumi.get(self, "path_filter_type")
3121
+
3122
+ @path_filter_type.setter
3123
+ def path_filter_type(self, value: pulumi.Input[str]):
3124
+ pulumi.set(self, "path_filter_type", value)
3125
+
3126
+ @property
3127
+ @pulumi.getter
3128
+ def value(self) -> pulumi.Input[str]:
3129
+ """
3130
+ The value to be matched for the HTTP URL path.
3131
+ """
3132
+ return pulumi.get(self, "value")
3133
+
3134
+ @value.setter
3135
+ def value(self, value: pulumi.Input[str]):
3136
+ pulumi.set(self, "value", value)
3137
+
3138
+
3139
+ if not MYPY:
3140
+ class EdgeServicesTlsStageSecretArgsDict(TypedDict):
3141
+ region: NotRequired[pulumi.Input[str]]
3142
+ """
3143
+ The region of the secret.
3144
+ """
3145
+ secret_id: NotRequired[pulumi.Input[str]]
3146
+ """
3147
+ The ID of the Secret
3148
+ """
3149
+ elif False:
3150
+ EdgeServicesTlsStageSecretArgsDict: TypeAlias = Mapping[str, Any]
3151
+
3152
+ @pulumi.input_type
3153
+ class EdgeServicesTlsStageSecretArgs:
3154
+ def __init__(__self__, *,
3155
+ region: Optional[pulumi.Input[str]] = None,
3156
+ secret_id: Optional[pulumi.Input[str]] = None):
3157
+ """
3158
+ :param pulumi.Input[str] region: The region of the secret.
3159
+ :param pulumi.Input[str] secret_id: The ID of the Secret
3160
+ """
3161
+ if region is not None:
3162
+ pulumi.set(__self__, "region", region)
3163
+ if secret_id is not None:
3164
+ pulumi.set(__self__, "secret_id", secret_id)
3165
+
3166
+ @property
3167
+ @pulumi.getter
3168
+ def region(self) -> Optional[pulumi.Input[str]]:
3169
+ """
3170
+ The region of the secret.
3171
+ """
3172
+ return pulumi.get(self, "region")
3173
+
3174
+ @region.setter
3175
+ def region(self, value: Optional[pulumi.Input[str]]):
3176
+ pulumi.set(self, "region", value)
3177
+
3178
+ @property
3179
+ @pulumi.getter(name="secretId")
3180
+ def secret_id(self) -> Optional[pulumi.Input[str]]:
3181
+ """
3182
+ The ID of the Secret
3183
+ """
3184
+ return pulumi.get(self, "secret_id")
3185
+
3186
+ @secret_id.setter
3187
+ def secret_id(self, value: Optional[pulumi.Input[str]]):
3188
+ pulumi.set(self, "secret_id", value)
3189
+
3190
+
2680
3191
  if not MYPY:
2681
3192
  class FunctionTriggerNatsArgsDict(TypedDict):
2682
3193
  subject: pulumi.Input[str]
@@ -8406,6 +8917,158 @@ class SecretEphemeralPolicyArgs:
8406
8917
  pulumi.set(self, "ttl", value)
8407
8918
 
8408
8919
 
8920
+ if not MYPY:
8921
+ class SecretVersionArgsDict(TypedDict):
8922
+ created_at: NotRequired[pulumi.Input[str]]
8923
+ """
8924
+ Date and time of the secret's creation (in RFC 3339 format).
8925
+ """
8926
+ description: NotRequired[pulumi.Input[str]]
8927
+ """
8928
+ Description of the secret (e.g. `my-new-description`).
8929
+ """
8930
+ latest: NotRequired[pulumi.Input[bool]]
8931
+ """
8932
+ Returns true if the version is the latest.
8933
+ """
8934
+ revision: NotRequired[pulumi.Input[str]]
8935
+ """
8936
+ The revision of secret version
8937
+ """
8938
+ secret_id: NotRequired[pulumi.Input[str]]
8939
+ """
8940
+ The secret ID associated with this version
8941
+ """
8942
+ status: NotRequired[pulumi.Input[str]]
8943
+ """
8944
+ The status of the secret.
8945
+ """
8946
+ updated_at: NotRequired[pulumi.Input[str]]
8947
+ """
8948
+ Date and time of the secret's last update (in RFC 3339 format).
8949
+ """
8950
+ elif False:
8951
+ SecretVersionArgsDict: TypeAlias = Mapping[str, Any]
8952
+
8953
+ @pulumi.input_type
8954
+ class SecretVersionArgs:
8955
+ def __init__(__self__, *,
8956
+ created_at: Optional[pulumi.Input[str]] = None,
8957
+ description: Optional[pulumi.Input[str]] = None,
8958
+ latest: Optional[pulumi.Input[bool]] = None,
8959
+ revision: Optional[pulumi.Input[str]] = None,
8960
+ secret_id: Optional[pulumi.Input[str]] = None,
8961
+ status: Optional[pulumi.Input[str]] = None,
8962
+ updated_at: Optional[pulumi.Input[str]] = None):
8963
+ """
8964
+ :param pulumi.Input[str] created_at: Date and time of the secret's creation (in RFC 3339 format).
8965
+ :param pulumi.Input[str] description: Description of the secret (e.g. `my-new-description`).
8966
+ :param pulumi.Input[bool] latest: Returns true if the version is the latest.
8967
+ :param pulumi.Input[str] revision: The revision of secret version
8968
+ :param pulumi.Input[str] secret_id: The secret ID associated with this version
8969
+ :param pulumi.Input[str] status: The status of the secret.
8970
+ :param pulumi.Input[str] updated_at: Date and time of the secret's last update (in RFC 3339 format).
8971
+ """
8972
+ if created_at is not None:
8973
+ pulumi.set(__self__, "created_at", created_at)
8974
+ if description is not None:
8975
+ pulumi.set(__self__, "description", description)
8976
+ if latest is not None:
8977
+ pulumi.set(__self__, "latest", latest)
8978
+ if revision is not None:
8979
+ pulumi.set(__self__, "revision", revision)
8980
+ if secret_id is not None:
8981
+ pulumi.set(__self__, "secret_id", secret_id)
8982
+ if status is not None:
8983
+ pulumi.set(__self__, "status", status)
8984
+ if updated_at is not None:
8985
+ pulumi.set(__self__, "updated_at", updated_at)
8986
+
8987
+ @property
8988
+ @pulumi.getter(name="createdAt")
8989
+ def created_at(self) -> Optional[pulumi.Input[str]]:
8990
+ """
8991
+ Date and time of the secret's creation (in RFC 3339 format).
8992
+ """
8993
+ return pulumi.get(self, "created_at")
8994
+
8995
+ @created_at.setter
8996
+ def created_at(self, value: Optional[pulumi.Input[str]]):
8997
+ pulumi.set(self, "created_at", value)
8998
+
8999
+ @property
9000
+ @pulumi.getter
9001
+ def description(self) -> Optional[pulumi.Input[str]]:
9002
+ """
9003
+ Description of the secret (e.g. `my-new-description`).
9004
+ """
9005
+ return pulumi.get(self, "description")
9006
+
9007
+ @description.setter
9008
+ def description(self, value: Optional[pulumi.Input[str]]):
9009
+ pulumi.set(self, "description", value)
9010
+
9011
+ @property
9012
+ @pulumi.getter
9013
+ def latest(self) -> Optional[pulumi.Input[bool]]:
9014
+ """
9015
+ Returns true if the version is the latest.
9016
+ """
9017
+ return pulumi.get(self, "latest")
9018
+
9019
+ @latest.setter
9020
+ def latest(self, value: Optional[pulumi.Input[bool]]):
9021
+ pulumi.set(self, "latest", value)
9022
+
9023
+ @property
9024
+ @pulumi.getter
9025
+ def revision(self) -> Optional[pulumi.Input[str]]:
9026
+ """
9027
+ The revision of secret version
9028
+ """
9029
+ return pulumi.get(self, "revision")
9030
+
9031
+ @revision.setter
9032
+ def revision(self, value: Optional[pulumi.Input[str]]):
9033
+ pulumi.set(self, "revision", value)
9034
+
9035
+ @property
9036
+ @pulumi.getter(name="secretId")
9037
+ def secret_id(self) -> Optional[pulumi.Input[str]]:
9038
+ """
9039
+ The secret ID associated with this version
9040
+ """
9041
+ return pulumi.get(self, "secret_id")
9042
+
9043
+ @secret_id.setter
9044
+ def secret_id(self, value: Optional[pulumi.Input[str]]):
9045
+ pulumi.set(self, "secret_id", value)
9046
+
9047
+ @property
9048
+ @pulumi.getter
9049
+ def status(self) -> Optional[pulumi.Input[str]]:
9050
+ """
9051
+ The status of the secret.
9052
+ """
9053
+ return pulumi.get(self, "status")
9054
+
9055
+ @status.setter
9056
+ def status(self, value: Optional[pulumi.Input[str]]):
9057
+ pulumi.set(self, "status", value)
9058
+
9059
+ @property
9060
+ @pulumi.getter(name="updatedAt")
9061
+ def updated_at(self) -> Optional[pulumi.Input[str]]:
9062
+ """
9063
+ Date and time of the secret's last update (in RFC 3339 format).
9064
+ """
9065
+ return pulumi.get(self, "updated_at")
9066
+
9067
+ @updated_at.setter
9068
+ def updated_at(self, value: Optional[pulumi.Input[str]]):
9069
+ pulumi.set(self, "updated_at", value)
9070
+
9071
+
8409
9072
  if not MYPY:
8410
9073
  class TemDomainReputationArgsDict(TypedDict):
8411
9074
  previous_score: NotRequired[pulumi.Input[int]]