pulumi-gcp 7.30.0a1720075632__py3-none-any.whl → 7.30.1__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 (56) hide show
  1. pulumi_gcp/__init__.py +32 -0
  2. pulumi_gcp/artifactregistry/get_docker_image.py +2 -2
  3. pulumi_gcp/bigtable/gc_policy.py +68 -14
  4. pulumi_gcp/cloudfunctionsv2/_inputs.py +97 -0
  5. pulumi_gcp/cloudfunctionsv2/function.py +232 -0
  6. pulumi_gcp/cloudfunctionsv2/outputs.py +129 -1
  7. pulumi_gcp/compute/_inputs.py +622 -0
  8. pulumi_gcp/compute/address.py +0 -7
  9. pulumi_gcp/compute/backend_service.py +0 -14
  10. pulumi_gcp/compute/forwarding_rule.py +0 -21
  11. pulumi_gcp/compute/global_forwarding_rule.py +0 -21
  12. pulumi_gcp/compute/managed_ssl_certificate.py +0 -7
  13. pulumi_gcp/compute/manged_ssl_certificate.py +0 -7
  14. pulumi_gcp/compute/network_attachment.py +16 -0
  15. pulumi_gcp/compute/outputs.py +504 -8
  16. pulumi_gcp/compute/region_backend_service.py +0 -14
  17. pulumi_gcp/compute/region_ssl_certificate.py +0 -7
  18. pulumi_gcp/compute/ssl_certificate.py +0 -7
  19. pulumi_gcp/compute/target_https_proxy.py +76 -1
  20. pulumi_gcp/compute/url_map.py +255 -0
  21. pulumi_gcp/container/aws_cluster.py +2 -2
  22. pulumi_gcp/container/aws_node_pool.py +2 -2
  23. pulumi_gcp/container/azure_client.py +2 -2
  24. pulumi_gcp/container/azure_cluster.py +2 -2
  25. pulumi_gcp/container/azure_node_pool.py +2 -2
  26. pulumi_gcp/datafusion/_inputs.py +163 -11
  27. pulumi_gcp/datafusion/instance.py +64 -0
  28. pulumi_gcp/datafusion/outputs.py +127 -7
  29. pulumi_gcp/healthcare/_inputs.py +43 -0
  30. pulumi_gcp/healthcare/dataset.py +110 -0
  31. pulumi_gcp/healthcare/outputs.py +43 -0
  32. pulumi_gcp/identityplatform/config.py +1 -1
  33. pulumi_gcp/logging/billing_account_bucket_config.py +1 -1
  34. pulumi_gcp/logging/folder_bucket_config.py +1 -1
  35. pulumi_gcp/logging/organization_bucket_config.py +1 -1
  36. pulumi_gcp/monitoring/_inputs.py +77 -0
  37. pulumi_gcp/monitoring/outputs.py +63 -0
  38. pulumi_gcp/pulumi-plugin.json +1 -1
  39. pulumi_gcp/securitycenter/instance_iam_binding.py +64 -0
  40. pulumi_gcp/securitycenter/instance_iam_member.py +64 -0
  41. pulumi_gcp/securitycenter/instance_iam_policy.py +64 -0
  42. pulumi_gcp/storage/__init__.py +5 -0
  43. pulumi_gcp/storage/_inputs.py +130 -0
  44. pulumi_gcp/storage/get_managed_folder_iam_policy.py +115 -0
  45. pulumi_gcp/storage/managed_folder.py +440 -0
  46. pulumi_gcp/storage/managed_folder_iam_binding.py +947 -0
  47. pulumi_gcp/storage/managed_folder_iam_member.py +947 -0
  48. pulumi_gcp/storage/managed_folder_iam_policy.py +766 -0
  49. pulumi_gcp/storage/outputs.py +76 -0
  50. pulumi_gcp/vertex/_inputs.py +3 -3
  51. pulumi_gcp/vertex/ai_feature_online_store.py +9 -9
  52. pulumi_gcp/vertex/outputs.py +2 -2
  53. {pulumi_gcp-7.30.0a1720075632.dist-info → pulumi_gcp-7.30.1.dist-info}/METADATA +1 -1
  54. {pulumi_gcp-7.30.0a1720075632.dist-info → pulumi_gcp-7.30.1.dist-info}/RECORD +56 -51
  55. {pulumi_gcp-7.30.0a1720075632.dist-info → pulumi_gcp-7.30.1.dist-info}/WHEEL +0 -0
  56. {pulumi_gcp-7.30.0a1720075632.dist-info → pulumi_gcp-7.30.1.dist-info}/top_level.txt +0 -0
@@ -125,7 +125,6 @@ class RegionBackendServiceArgs:
125
125
  instance either reported a valid weight or had
126
126
  UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains
127
127
  equal-weight.
128
-
129
128
  This field is applicable to either:
130
129
  * A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2,
131
130
  and loadBalancingScheme set to INTERNAL_MANAGED.
@@ -133,7 +132,6 @@ class RegionBackendServiceArgs:
133
132
  * A regional backend service with loadBalancingScheme set to EXTERNAL (External Network
134
133
  Load Balancing). Only MAGLEV and WEIGHTED_MAGLEV values are possible for External
135
134
  Network Load Balancing. The default is MAGLEV.
136
-
137
135
  If session_affinity is not NONE, and this field is not set to MAGLEV, WEIGHTED_MAGLEV,
138
136
  or RING_HASH, session affinity settings will not take effect.
139
137
  Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced
@@ -457,7 +455,6 @@ class RegionBackendServiceArgs:
457
455
  instance either reported a valid weight or had
458
456
  UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains
459
457
  equal-weight.
460
-
461
458
  This field is applicable to either:
462
459
  * A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2,
463
460
  and loadBalancingScheme set to INTERNAL_MANAGED.
@@ -465,7 +462,6 @@ class RegionBackendServiceArgs:
465
462
  * A regional backend service with loadBalancingScheme set to EXTERNAL (External Network
466
463
  Load Balancing). Only MAGLEV and WEIGHTED_MAGLEV values are possible for External
467
464
  Network Load Balancing. The default is MAGLEV.
468
-
469
465
  If session_affinity is not NONE, and this field is not set to MAGLEV, WEIGHTED_MAGLEV,
470
466
  or RING_HASH, session affinity settings will not take effect.
471
467
  Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced
@@ -765,7 +761,6 @@ class _RegionBackendServiceState:
765
761
  instance either reported a valid weight or had
766
762
  UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains
767
763
  equal-weight.
768
-
769
764
  This field is applicable to either:
770
765
  * A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2,
771
766
  and loadBalancingScheme set to INTERNAL_MANAGED.
@@ -773,7 +768,6 @@ class _RegionBackendServiceState:
773
768
  * A regional backend service with loadBalancingScheme set to EXTERNAL (External Network
774
769
  Load Balancing). Only MAGLEV and WEIGHTED_MAGLEV values are possible for External
775
770
  Network Load Balancing. The default is MAGLEV.
776
-
777
771
  If session_affinity is not NONE, and this field is not set to MAGLEV, WEIGHTED_MAGLEV,
778
772
  or RING_HASH, session affinity settings will not take effect.
779
773
  Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced
@@ -1143,7 +1137,6 @@ class _RegionBackendServiceState:
1143
1137
  instance either reported a valid weight or had
1144
1138
  UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains
1145
1139
  equal-weight.
1146
-
1147
1140
  This field is applicable to either:
1148
1141
  * A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2,
1149
1142
  and loadBalancingScheme set to INTERNAL_MANAGED.
@@ -1151,7 +1144,6 @@ class _RegionBackendServiceState:
1151
1144
  * A regional backend service with loadBalancingScheme set to EXTERNAL (External Network
1152
1145
  Load Balancing). Only MAGLEV and WEIGHTED_MAGLEV values are possible for External
1153
1146
  Network Load Balancing. The default is MAGLEV.
1154
-
1155
1147
  If session_affinity is not NONE, and this field is not set to MAGLEV, WEIGHTED_MAGLEV,
1156
1148
  or RING_HASH, session affinity settings will not take effect.
1157
1149
  Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced
@@ -1746,7 +1738,6 @@ class RegionBackendService(pulumi.CustomResource):
1746
1738
  instance either reported a valid weight or had
1747
1739
  UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains
1748
1740
  equal-weight.
1749
-
1750
1741
  This field is applicable to either:
1751
1742
  * A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2,
1752
1743
  and loadBalancingScheme set to INTERNAL_MANAGED.
@@ -1754,7 +1745,6 @@ class RegionBackendService(pulumi.CustomResource):
1754
1745
  * A regional backend service with loadBalancingScheme set to EXTERNAL (External Network
1755
1746
  Load Balancing). Only MAGLEV and WEIGHTED_MAGLEV values are possible for External
1756
1747
  Network Load Balancing. The default is MAGLEV.
1757
-
1758
1748
  If session_affinity is not NONE, and this field is not set to MAGLEV, WEIGHTED_MAGLEV,
1759
1749
  or RING_HASH, session affinity settings will not take effect.
1760
1750
  Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced
@@ -2303,7 +2293,6 @@ class RegionBackendService(pulumi.CustomResource):
2303
2293
  instance either reported a valid weight or had
2304
2294
  UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains
2305
2295
  equal-weight.
2306
-
2307
2296
  This field is applicable to either:
2308
2297
  * A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2,
2309
2298
  and loadBalancingScheme set to INTERNAL_MANAGED.
@@ -2311,7 +2300,6 @@ class RegionBackendService(pulumi.CustomResource):
2311
2300
  * A regional backend service with loadBalancingScheme set to EXTERNAL (External Network
2312
2301
  Load Balancing). Only MAGLEV and WEIGHTED_MAGLEV values are possible for External
2313
2302
  Network Load Balancing. The default is MAGLEV.
2314
-
2315
2303
  If session_affinity is not NONE, and this field is not set to MAGLEV, WEIGHTED_MAGLEV,
2316
2304
  or RING_HASH, session affinity settings will not take effect.
2317
2305
  Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced
@@ -2592,7 +2580,6 @@ class RegionBackendService(pulumi.CustomResource):
2592
2580
  instance either reported a valid weight or had
2593
2581
  UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains
2594
2582
  equal-weight.
2595
-
2596
2583
  This field is applicable to either:
2597
2584
  * A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2,
2598
2585
  and loadBalancingScheme set to INTERNAL_MANAGED.
@@ -2600,7 +2587,6 @@ class RegionBackendService(pulumi.CustomResource):
2600
2587
  * A regional backend service with loadBalancingScheme set to EXTERNAL (External Network
2601
2588
  Load Balancing). Only MAGLEV and WEIGHTED_MAGLEV values are possible for External
2602
2589
  Network Load Balancing. The default is MAGLEV.
2603
-
2604
2590
  If session_affinity is not NONE, and this field is not set to MAGLEV, WEIGHTED_MAGLEV,
2605
2591
  or RING_HASH, session affinity settings will not take effect.
2606
2592
  Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced
@@ -45,7 +45,6 @@ class RegionSslCertificateArgs:
45
45
  first character must be a lowercase letter, and all following
46
46
  characters must be a dash, lowercase letter, or digit, except the last
47
47
  character, which cannot be a dash.
48
-
49
48
  These are in the same namespace as the managed SSL certificates.
50
49
  :param pulumi.Input[str] name_prefix: Creates a unique name beginning with the
51
50
  specified prefix. Conflicts with `name`.
@@ -121,7 +120,6 @@ class RegionSslCertificateArgs:
121
120
  first character must be a lowercase letter, and all following
122
121
  characters must be a dash, lowercase letter, or digit, except the last
123
122
  character, which cannot be a dash.
124
-
125
123
  These are in the same namespace as the managed SSL certificates.
126
124
  """
127
125
  return pulumi.get(self, "name")
@@ -201,7 +199,6 @@ class _RegionSslCertificateState:
201
199
  first character must be a lowercase letter, and all following
202
200
  characters must be a dash, lowercase letter, or digit, except the last
203
201
  character, which cannot be a dash.
204
-
205
202
  These are in the same namespace as the managed SSL certificates.
206
203
  :param pulumi.Input[str] name_prefix: Creates a unique name beginning with the
207
204
  specified prefix. Conflicts with `name`.
@@ -313,7 +310,6 @@ class _RegionSslCertificateState:
313
310
  first character must be a lowercase letter, and all following
314
311
  characters must be a dash, lowercase letter, or digit, except the last
315
312
  character, which cannot be a dash.
316
-
317
313
  These are in the same namespace as the managed SSL certificates.
318
314
  """
319
315
  return pulumi.get(self, "name")
@@ -460,7 +456,6 @@ class RegionSslCertificate(pulumi.CustomResource):
460
456
  first character must be a lowercase letter, and all following
461
457
  characters must be a dash, lowercase letter, or digit, except the last
462
458
  character, which cannot be a dash.
463
-
464
459
  These are in the same namespace as the managed SSL certificates.
465
460
  :param pulumi.Input[str] name_prefix: Creates a unique name beginning with the
466
461
  specified prefix. Conflicts with `name`.
@@ -614,7 +609,6 @@ class RegionSslCertificate(pulumi.CustomResource):
614
609
  first character must be a lowercase letter, and all following
615
610
  characters must be a dash, lowercase letter, or digit, except the last
616
611
  character, which cannot be a dash.
617
-
618
612
  These are in the same namespace as the managed SSL certificates.
619
613
  :param pulumi.Input[str] name_prefix: Creates a unique name beginning with the
620
614
  specified prefix. Conflicts with `name`.
@@ -700,7 +694,6 @@ class RegionSslCertificate(pulumi.CustomResource):
700
694
  first character must be a lowercase letter, and all following
701
695
  characters must be a dash, lowercase letter, or digit, except the last
702
696
  character, which cannot be a dash.
703
-
704
697
  These are in the same namespace as the managed SSL certificates.
705
698
  """
706
699
  return pulumi.get(self, "name")
@@ -44,7 +44,6 @@ class SSLCertificateArgs:
44
44
  first character must be a lowercase letter, and all following
45
45
  characters must be a dash, lowercase letter, or digit, except the last
46
46
  character, which cannot be a dash.
47
-
48
47
  These are in the same namespace as the managed SSL certificates.
49
48
  :param pulumi.Input[str] name_prefix: Creates a unique name beginning with the
50
49
  specified prefix. Conflicts with `name`.
@@ -116,7 +115,6 @@ class SSLCertificateArgs:
116
115
  first character must be a lowercase letter, and all following
117
116
  characters must be a dash, lowercase letter, or digit, except the last
118
117
  character, which cannot be a dash.
119
-
120
118
  These are in the same namespace as the managed SSL certificates.
121
119
  """
122
120
  return pulumi.get(self, "name")
@@ -182,7 +180,6 @@ class _SSLCertificateState:
182
180
  first character must be a lowercase letter, and all following
183
181
  characters must be a dash, lowercase letter, or digit, except the last
184
182
  character, which cannot be a dash.
185
-
186
183
  These are in the same namespace as the managed SSL certificates.
187
184
  :param pulumi.Input[str] name_prefix: Creates a unique name beginning with the
188
185
  specified prefix. Conflicts with `name`.
@@ -290,7 +287,6 @@ class _SSLCertificateState:
290
287
  first character must be a lowercase letter, and all following
291
288
  characters must be a dash, lowercase letter, or digit, except the last
292
289
  character, which cannot be a dash.
293
-
294
290
  These are in the same namespace as the managed SSL certificates.
295
291
  """
296
292
  return pulumi.get(self, "name")
@@ -417,7 +413,6 @@ class SSLCertificate(pulumi.CustomResource):
417
413
  first character must be a lowercase letter, and all following
418
414
  characters must be a dash, lowercase letter, or digit, except the last
419
415
  character, which cannot be a dash.
420
-
421
416
  These are in the same namespace as the managed SSL certificates.
422
417
  :param pulumi.Input[str] name_prefix: Creates a unique name beginning with the
423
418
  specified prefix. Conflicts with `name`.
@@ -560,7 +555,6 @@ class SSLCertificate(pulumi.CustomResource):
560
555
  first character must be a lowercase letter, and all following
561
556
  characters must be a dash, lowercase letter, or digit, except the last
562
557
  character, which cannot be a dash.
563
-
564
558
  These are in the same namespace as the managed SSL certificates.
565
559
  :param pulumi.Input[str] name_prefix: Creates a unique name beginning with the
566
560
  specified prefix. Conflicts with `name`.
@@ -643,7 +637,6 @@ class SSLCertificate(pulumi.CustomResource):
643
637
  first character must be a lowercase letter, and all following
644
638
  characters must be a dash, lowercase letter, or digit, except the last
645
639
  character, which cannot be a dash.
646
-
647
640
  These are in the same namespace as the managed SSL certificates.
648
641
  """
649
642
  return pulumi.get(self, "name")
@@ -30,7 +30,8 @@ class TargetHttpsProxyArgs:
30
30
  quic_override: Optional[pulumi.Input[str]] = None,
31
31
  server_tls_policy: Optional[pulumi.Input[str]] = None,
32
32
  ssl_certificates: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
33
- ssl_policy: Optional[pulumi.Input[str]] = None):
33
+ ssl_policy: Optional[pulumi.Input[str]] = None,
34
+ tls_early_data: Optional[pulumi.Input[str]] = None):
34
35
  """
35
36
  The set of arguments for constructing a TargetHttpsProxy resource.
36
37
  :param pulumi.Input[str] url_map: A reference to the UrlMap resource that defines the mapping from URL
@@ -86,6 +87,11 @@ class TargetHttpsProxyArgs:
86
87
  :param pulumi.Input[str] ssl_policy: A reference to the SslPolicy resource that will be associated with
87
88
  the TargetHttpsProxy resource. If not set, the TargetHttpsProxy
88
89
  resource will not have any SSL policy configured.
90
+ :param pulumi.Input[str] tls_early_data: Specifies whether TLS 1.3 0-RTT Data (“Early Data”) should be accepted for this service.
91
+ Early Data allows a TLS resumption handshake to include the initial application payload
92
+ (a HTTP request) alongside the handshake, reducing the effective round trips to “zero”.
93
+ This applies to TLS 1.3 connections over TCP (HTTP/2) as well as over UDP (QUIC/h3).
94
+ Possible values are: `STRICT`, `PERMISSIVE`, `DISABLED`.
89
95
  """
90
96
  pulumi.set(__self__, "url_map", url_map)
91
97
  if certificate_manager_certificates is not None:
@@ -110,6 +116,8 @@ class TargetHttpsProxyArgs:
110
116
  pulumi.set(__self__, "ssl_certificates", ssl_certificates)
111
117
  if ssl_policy is not None:
112
118
  pulumi.set(__self__, "ssl_policy", ssl_policy)
119
+ if tls_early_data is not None:
120
+ pulumi.set(__self__, "tls_early_data", tls_early_data)
113
121
 
114
122
  @property
115
123
  @pulumi.getter(name="urlMap")
@@ -296,6 +304,22 @@ class TargetHttpsProxyArgs:
296
304
  def ssl_policy(self, value: Optional[pulumi.Input[str]]):
297
305
  pulumi.set(self, "ssl_policy", value)
298
306
 
307
+ @property
308
+ @pulumi.getter(name="tlsEarlyData")
309
+ def tls_early_data(self) -> Optional[pulumi.Input[str]]:
310
+ """
311
+ Specifies whether TLS 1.3 0-RTT Data (“Early Data”) should be accepted for this service.
312
+ Early Data allows a TLS resumption handshake to include the initial application payload
313
+ (a HTTP request) alongside the handshake, reducing the effective round trips to “zero”.
314
+ This applies to TLS 1.3 connections over TCP (HTTP/2) as well as over UDP (QUIC/h3).
315
+ Possible values are: `STRICT`, `PERMISSIVE`, `DISABLED`.
316
+ """
317
+ return pulumi.get(self, "tls_early_data")
318
+
319
+ @tls_early_data.setter
320
+ def tls_early_data(self, value: Optional[pulumi.Input[str]]):
321
+ pulumi.set(self, "tls_early_data", value)
322
+
299
323
 
300
324
  @pulumi.input_type
301
325
  class _TargetHttpsProxyState:
@@ -314,6 +338,7 @@ class _TargetHttpsProxyState:
314
338
  server_tls_policy: Optional[pulumi.Input[str]] = None,
315
339
  ssl_certificates: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
316
340
  ssl_policy: Optional[pulumi.Input[str]] = None,
341
+ tls_early_data: Optional[pulumi.Input[str]] = None,
317
342
  url_map: Optional[pulumi.Input[str]] = None):
318
343
  """
319
344
  Input properties used for looking up and filtering TargetHttpsProxy resources.
@@ -368,6 +393,11 @@ class _TargetHttpsProxyState:
368
393
  :param pulumi.Input[str] ssl_policy: A reference to the SslPolicy resource that will be associated with
369
394
  the TargetHttpsProxy resource. If not set, the TargetHttpsProxy
370
395
  resource will not have any SSL policy configured.
396
+ :param pulumi.Input[str] tls_early_data: Specifies whether TLS 1.3 0-RTT Data (“Early Data”) should be accepted for this service.
397
+ Early Data allows a TLS resumption handshake to include the initial application payload
398
+ (a HTTP request) alongside the handshake, reducing the effective round trips to “zero”.
399
+ This applies to TLS 1.3 connections over TCP (HTTP/2) as well as over UDP (QUIC/h3).
400
+ Possible values are: `STRICT`, `PERMISSIVE`, `DISABLED`.
371
401
  :param pulumi.Input[str] url_map: A reference to the UrlMap resource that defines the mapping from URL
372
402
  to the BackendService.
373
403
 
@@ -402,6 +432,8 @@ class _TargetHttpsProxyState:
402
432
  pulumi.set(__self__, "ssl_certificates", ssl_certificates)
403
433
  if ssl_policy is not None:
404
434
  pulumi.set(__self__, "ssl_policy", ssl_policy)
435
+ if tls_early_data is not None:
436
+ pulumi.set(__self__, "tls_early_data", tls_early_data)
405
437
  if url_map is not None:
406
438
  pulumi.set(__self__, "url_map", url_map)
407
439
 
@@ -610,6 +642,22 @@ class _TargetHttpsProxyState:
610
642
  def ssl_policy(self, value: Optional[pulumi.Input[str]]):
611
643
  pulumi.set(self, "ssl_policy", value)
612
644
 
645
+ @property
646
+ @pulumi.getter(name="tlsEarlyData")
647
+ def tls_early_data(self) -> Optional[pulumi.Input[str]]:
648
+ """
649
+ Specifies whether TLS 1.3 0-RTT Data (“Early Data”) should be accepted for this service.
650
+ Early Data allows a TLS resumption handshake to include the initial application payload
651
+ (a HTTP request) alongside the handshake, reducing the effective round trips to “zero”.
652
+ This applies to TLS 1.3 connections over TCP (HTTP/2) as well as over UDP (QUIC/h3).
653
+ Possible values are: `STRICT`, `PERMISSIVE`, `DISABLED`.
654
+ """
655
+ return pulumi.get(self, "tls_early_data")
656
+
657
+ @tls_early_data.setter
658
+ def tls_early_data(self, value: Optional[pulumi.Input[str]]):
659
+ pulumi.set(self, "tls_early_data", value)
660
+
613
661
  @property
614
662
  @pulumi.getter(name="urlMap")
615
663
  def url_map(self) -> Optional[pulumi.Input[str]]:
@@ -643,6 +691,7 @@ class TargetHttpsProxy(pulumi.CustomResource):
643
691
  server_tls_policy: Optional[pulumi.Input[str]] = None,
644
692
  ssl_certificates: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
645
693
  ssl_policy: Optional[pulumi.Input[str]] = None,
694
+ tls_early_data: Optional[pulumi.Input[str]] = None,
646
695
  url_map: Optional[pulumi.Input[str]] = None,
647
696
  __props__=None):
648
697
  """
@@ -930,6 +979,11 @@ class TargetHttpsProxy(pulumi.CustomResource):
930
979
  :param pulumi.Input[str] ssl_policy: A reference to the SslPolicy resource that will be associated with
931
980
  the TargetHttpsProxy resource. If not set, the TargetHttpsProxy
932
981
  resource will not have any SSL policy configured.
982
+ :param pulumi.Input[str] tls_early_data: Specifies whether TLS 1.3 0-RTT Data (“Early Data”) should be accepted for this service.
983
+ Early Data allows a TLS resumption handshake to include the initial application payload
984
+ (a HTTP request) alongside the handshake, reducing the effective round trips to “zero”.
985
+ This applies to TLS 1.3 connections over TCP (HTTP/2) as well as over UDP (QUIC/h3).
986
+ Possible values are: `STRICT`, `PERMISSIVE`, `DISABLED`.
933
987
  :param pulumi.Input[str] url_map: A reference to the UrlMap resource that defines the mapping from URL
934
988
  to the BackendService.
935
989
 
@@ -1203,6 +1257,7 @@ class TargetHttpsProxy(pulumi.CustomResource):
1203
1257
  server_tls_policy: Optional[pulumi.Input[str]] = None,
1204
1258
  ssl_certificates: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1205
1259
  ssl_policy: Optional[pulumi.Input[str]] = None,
1260
+ tls_early_data: Optional[pulumi.Input[str]] = None,
1206
1261
  url_map: Optional[pulumi.Input[str]] = None,
1207
1262
  __props__=None):
1208
1263
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -1224,6 +1279,7 @@ class TargetHttpsProxy(pulumi.CustomResource):
1224
1279
  __props__.__dict__["server_tls_policy"] = server_tls_policy
1225
1280
  __props__.__dict__["ssl_certificates"] = ssl_certificates
1226
1281
  __props__.__dict__["ssl_policy"] = ssl_policy
1282
+ __props__.__dict__["tls_early_data"] = tls_early_data
1227
1283
  if url_map is None and not opts.urn:
1228
1284
  raise TypeError("Missing required property 'url_map'")
1229
1285
  __props__.__dict__["url_map"] = url_map
@@ -1254,6 +1310,7 @@ class TargetHttpsProxy(pulumi.CustomResource):
1254
1310
  server_tls_policy: Optional[pulumi.Input[str]] = None,
1255
1311
  ssl_certificates: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1256
1312
  ssl_policy: Optional[pulumi.Input[str]] = None,
1313
+ tls_early_data: Optional[pulumi.Input[str]] = None,
1257
1314
  url_map: Optional[pulumi.Input[str]] = None) -> 'TargetHttpsProxy':
1258
1315
  """
1259
1316
  Get an existing TargetHttpsProxy resource's state with the given name, id, and optional extra
@@ -1313,6 +1370,11 @@ class TargetHttpsProxy(pulumi.CustomResource):
1313
1370
  :param pulumi.Input[str] ssl_policy: A reference to the SslPolicy resource that will be associated with
1314
1371
  the TargetHttpsProxy resource. If not set, the TargetHttpsProxy
1315
1372
  resource will not have any SSL policy configured.
1373
+ :param pulumi.Input[str] tls_early_data: Specifies whether TLS 1.3 0-RTT Data (“Early Data”) should be accepted for this service.
1374
+ Early Data allows a TLS resumption handshake to include the initial application payload
1375
+ (a HTTP request) alongside the handshake, reducing the effective round trips to “zero”.
1376
+ This applies to TLS 1.3 connections over TCP (HTTP/2) as well as over UDP (QUIC/h3).
1377
+ Possible values are: `STRICT`, `PERMISSIVE`, `DISABLED`.
1316
1378
  :param pulumi.Input[str] url_map: A reference to the UrlMap resource that defines the mapping from URL
1317
1379
  to the BackendService.
1318
1380
 
@@ -1337,6 +1399,7 @@ class TargetHttpsProxy(pulumi.CustomResource):
1337
1399
  __props__.__dict__["server_tls_policy"] = server_tls_policy
1338
1400
  __props__.__dict__["ssl_certificates"] = ssl_certificates
1339
1401
  __props__.__dict__["ssl_policy"] = ssl_policy
1402
+ __props__.__dict__["tls_early_data"] = tls_early_data
1340
1403
  __props__.__dict__["url_map"] = url_map
1341
1404
  return TargetHttpsProxy(resource_name, opts=opts, __props__=__props__)
1342
1405
 
@@ -1489,6 +1552,18 @@ class TargetHttpsProxy(pulumi.CustomResource):
1489
1552
  """
1490
1553
  return pulumi.get(self, "ssl_policy")
1491
1554
 
1555
+ @property
1556
+ @pulumi.getter(name="tlsEarlyData")
1557
+ def tls_early_data(self) -> pulumi.Output[str]:
1558
+ """
1559
+ Specifies whether TLS 1.3 0-RTT Data (“Early Data”) should be accepted for this service.
1560
+ Early Data allows a TLS resumption handshake to include the initial application payload
1561
+ (a HTTP request) alongside the handshake, reducing the effective round trips to “zero”.
1562
+ This applies to TLS 1.3 connections over TCP (HTTP/2) as well as over UDP (QUIC/h3).
1563
+ Possible values are: `STRICT`, `PERMISSIVE`, `DISABLED`.
1564
+ """
1565
+ return pulumi.get(self, "tls_early_data")
1566
+
1492
1567
  @property
1493
1568
  @pulumi.getter(name="urlMap")
1494
1569
  def url_map(self) -> pulumi.Output[str]: