pulumi-gcp 8.28.0a1745598508__py3-none-any.whl → 8.29.0a1746076904__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 (78) hide show
  1. pulumi_gcp/__init__.py +88 -0
  2. pulumi_gcp/accesscontextmanager/_inputs.py +399 -0
  3. pulumi_gcp/accesscontextmanager/gcp_user_access_binding.py +54 -0
  4. pulumi_gcp/accesscontextmanager/outputs.py +369 -0
  5. pulumi_gcp/alloydb/_inputs.py +47 -1
  6. pulumi_gcp/alloydb/outputs.py +61 -3
  7. pulumi_gcp/apigee/keystores_aliases_self_signed_cert.py +8 -2
  8. pulumi_gcp/applicationintegration/client.py +34 -12
  9. pulumi_gcp/artifactregistry/outputs.py +2 -2
  10. pulumi_gcp/certificateauthority/_inputs.py +32 -0
  11. pulumi_gcp/certificateauthority/ca_pool.py +2 -0
  12. pulumi_gcp/certificateauthority/outputs.py +22 -0
  13. pulumi_gcp/clouddeploy/_inputs.py +0 -6
  14. pulumi_gcp/clouddeploy/delivery_pipeline.py +84 -77
  15. pulumi_gcp/clouddeploy/outputs.py +0 -4
  16. pulumi_gcp/cloudrunv2/_inputs.py +3 -3
  17. pulumi_gcp/cloudrunv2/outputs.py +4 -4
  18. pulumi_gcp/colab/runtime_template.py +3 -3
  19. pulumi_gcp/compute/__init__.py +7 -0
  20. pulumi_gcp/compute/_inputs.py +809 -1
  21. pulumi_gcp/compute/backend_service.py +89 -0
  22. pulumi_gcp/compute/firewall_policy_with_rules.py +2 -2
  23. pulumi_gcp/compute/get_backend_service.py +12 -1
  24. pulumi_gcp/compute/get_storage_pool_iam_policy.py +183 -0
  25. pulumi_gcp/compute/get_storage_pool_types.py +268 -0
  26. pulumi_gcp/compute/outputs.py +743 -3
  27. pulumi_gcp/compute/resource_policy_attachment.py +476 -0
  28. pulumi_gcp/compute/storage_pool.py +1045 -0
  29. pulumi_gcp/compute/storage_pool_iam_binding.py +1088 -0
  30. pulumi_gcp/compute/storage_pool_iam_member.py +1088 -0
  31. pulumi_gcp/compute/storage_pool_iam_policy.py +907 -0
  32. pulumi_gcp/config/__init__.pyi +2 -0
  33. pulumi_gcp/config/vars.py +4 -0
  34. pulumi_gcp/container/_inputs.py +63 -3
  35. pulumi_gcp/container/outputs.py +70 -6
  36. pulumi_gcp/dataproc/get_metastore_service.py +12 -1
  37. pulumi_gcp/dataproc/metastore_service.py +61 -0
  38. pulumi_gcp/datastream/connection_profile.py +40 -0
  39. pulumi_gcp/discoveryengine/_inputs.py +38 -0
  40. pulumi_gcp/discoveryengine/chat_engine.py +6 -4
  41. pulumi_gcp/discoveryengine/outputs.py +26 -0
  42. pulumi_gcp/firebaserules/_inputs.py +6 -6
  43. pulumi_gcp/firebaserules/outputs.py +4 -4
  44. pulumi_gcp/gkebackup/__init__.py +2 -0
  45. pulumi_gcp/gkebackup/backup_channel.py +737 -0
  46. pulumi_gcp/gkebackup/restore_channel.py +737 -0
  47. pulumi_gcp/gkehub/_inputs.py +208 -0
  48. pulumi_gcp/gkehub/outputs.py +171 -1
  49. pulumi_gcp/healthcare/pipeline_job.py +2 -2
  50. pulumi_gcp/iap/__init__.py +4 -0
  51. pulumi_gcp/iap/_inputs.py +130 -0
  52. pulumi_gcp/iap/get_web_cloud_run_service_iam_policy.py +183 -0
  53. pulumi_gcp/iap/outputs.py +76 -0
  54. pulumi_gcp/iap/web_cloud_run_service_iam_binding.py +1089 -0
  55. pulumi_gcp/iap/web_cloud_run_service_iam_member.py +1089 -0
  56. pulumi_gcp/iap/web_cloud_run_service_iam_policy.py +908 -0
  57. pulumi_gcp/kms/key_ring_import_job.py +7 -7
  58. pulumi_gcp/managedkafka/connect_cluster.py +8 -4
  59. pulumi_gcp/managedkafka/connector.py +8 -4
  60. pulumi_gcp/monitoring/uptime_check_config.py +49 -0
  61. pulumi_gcp/networkconnectivity/internal_range.py +82 -0
  62. pulumi_gcp/projects/_inputs.py +0 -6
  63. pulumi_gcp/projects/api_key.py +28 -0
  64. pulumi_gcp/projects/outputs.py +0 -4
  65. pulumi_gcp/provider.py +20 -0
  66. pulumi_gcp/pulumi-plugin.json +1 -1
  67. pulumi_gcp/redis/get_instance.py +12 -1
  68. pulumi_gcp/redis/instance.py +61 -0
  69. pulumi_gcp/sql/_inputs.py +86 -6
  70. pulumi_gcp/sql/outputs.py +156 -12
  71. pulumi_gcp/storage/__init__.py +1 -0
  72. pulumi_gcp/storage/_inputs.py +457 -0
  73. pulumi_gcp/storage/batch_operations_job.py +776 -0
  74. pulumi_gcp/storage/outputs.py +403 -0
  75. {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/METADATA +1 -1
  76. {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/RECORD +78 -64
  77. {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/WHEEL +1 -1
  78. {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/top_level.txt +0 -0
@@ -33,7 +33,7 @@ class KeyRingImportJobArgs:
33
33
 
34
34
  - - -
35
35
  :param pulumi.Input[builtins.str] import_method: The wrapping method to be used for incoming key material.
36
- Possible values are: `RSA_OAEP_3072_SHA1_AES_256`, `RSA_OAEP_4096_SHA1_AES_256`.
36
+ Possible values are: `RSA_OAEP_3072_SHA1_AES_256`, `RSA_OAEP_4096_SHA1_AES_256`, `RSA_OAEP_3072_SHA256_AES_256`, `RSA_OAEP_4096_SHA256_AES_256`, `RSA_OAEP_3072_SHA256`, `RSA_OAEP_4096_SHA256`.
37
37
  :param pulumi.Input[builtins.str] key_ring: The KeyRing that this import job belongs to.
38
38
  Format: `'projects/{{project}}/locations/{{location}}/keyRings/{{keyRing}}'`.
39
39
  :param pulumi.Input[builtins.str] protection_level: The protection level of the ImportJob. This must match the protectionLevel of the
@@ -65,7 +65,7 @@ class KeyRingImportJobArgs:
65
65
  def import_method(self) -> pulumi.Input[builtins.str]:
66
66
  """
67
67
  The wrapping method to be used for incoming key material.
68
- Possible values are: `RSA_OAEP_3072_SHA1_AES_256`, `RSA_OAEP_4096_SHA1_AES_256`.
68
+ Possible values are: `RSA_OAEP_3072_SHA1_AES_256`, `RSA_OAEP_4096_SHA1_AES_256`, `RSA_OAEP_3072_SHA256_AES_256`, `RSA_OAEP_4096_SHA256_AES_256`, `RSA_OAEP_3072_SHA256`, `RSA_OAEP_4096_SHA256`.
69
69
  """
70
70
  return pulumi.get(self, "import_method")
71
71
 
@@ -126,7 +126,7 @@ class _KeyRingImportJobState:
126
126
 
127
127
  - - -
128
128
  :param pulumi.Input[builtins.str] import_method: The wrapping method to be used for incoming key material.
129
- Possible values are: `RSA_OAEP_3072_SHA1_AES_256`, `RSA_OAEP_4096_SHA1_AES_256`.
129
+ Possible values are: `RSA_OAEP_3072_SHA1_AES_256`, `RSA_OAEP_4096_SHA1_AES_256`, `RSA_OAEP_3072_SHA256_AES_256`, `RSA_OAEP_4096_SHA256_AES_256`, `RSA_OAEP_3072_SHA256`, `RSA_OAEP_4096_SHA256`.
130
130
  :param pulumi.Input[builtins.str] key_ring: The KeyRing that this import job belongs to.
131
131
  Format: `'projects/{{project}}/locations/{{location}}/keyRings/{{keyRing}}'`.
132
132
  :param pulumi.Input[builtins.str] name: The resource name for this ImportJob in the format projects/*/locations/*/keyRings/*/importJobs/*.
@@ -204,7 +204,7 @@ class _KeyRingImportJobState:
204
204
  def import_method(self) -> Optional[pulumi.Input[builtins.str]]:
205
205
  """
206
206
  The wrapping method to be used for incoming key material.
207
- Possible values are: `RSA_OAEP_3072_SHA1_AES_256`, `RSA_OAEP_4096_SHA1_AES_256`.
207
+ Possible values are: `RSA_OAEP_3072_SHA1_AES_256`, `RSA_OAEP_4096_SHA1_AES_256`, `RSA_OAEP_3072_SHA256_AES_256`, `RSA_OAEP_4096_SHA256_AES_256`, `RSA_OAEP_3072_SHA256`, `RSA_OAEP_4096_SHA256`.
208
208
  """
209
209
  return pulumi.get(self, "import_method")
210
210
 
@@ -324,7 +324,7 @@ class KeyRingImportJob(pulumi.CustomResource):
324
324
 
325
325
  - - -
326
326
  :param pulumi.Input[builtins.str] import_method: The wrapping method to be used for incoming key material.
327
- Possible values are: `RSA_OAEP_3072_SHA1_AES_256`, `RSA_OAEP_4096_SHA1_AES_256`.
327
+ Possible values are: `RSA_OAEP_3072_SHA1_AES_256`, `RSA_OAEP_4096_SHA1_AES_256`, `RSA_OAEP_3072_SHA256_AES_256`, `RSA_OAEP_4096_SHA256_AES_256`, `RSA_OAEP_3072_SHA256`, `RSA_OAEP_4096_SHA256`.
328
328
  :param pulumi.Input[builtins.str] key_ring: The KeyRing that this import job belongs to.
329
329
  Format: `'projects/{{project}}/locations/{{location}}/keyRings/{{keyRing}}'`.
330
330
  :param pulumi.Input[builtins.str] protection_level: The protection level of the ImportJob. This must match the protectionLevel of the
@@ -449,7 +449,7 @@ class KeyRingImportJob(pulumi.CustomResource):
449
449
 
450
450
  - - -
451
451
  :param pulumi.Input[builtins.str] import_method: The wrapping method to be used for incoming key material.
452
- Possible values are: `RSA_OAEP_3072_SHA1_AES_256`, `RSA_OAEP_4096_SHA1_AES_256`.
452
+ Possible values are: `RSA_OAEP_3072_SHA1_AES_256`, `RSA_OAEP_4096_SHA1_AES_256`, `RSA_OAEP_3072_SHA256_AES_256`, `RSA_OAEP_4096_SHA256_AES_256`, `RSA_OAEP_3072_SHA256`, `RSA_OAEP_4096_SHA256`.
453
453
  :param pulumi.Input[builtins.str] key_ring: The KeyRing that this import job belongs to.
454
454
  Format: `'projects/{{project}}/locations/{{location}}/keyRings/{{keyRing}}'`.
455
455
  :param pulumi.Input[builtins.str] name: The resource name for this ImportJob in the format projects/*/locations/*/keyRings/*/importJobs/*.
@@ -511,7 +511,7 @@ class KeyRingImportJob(pulumi.CustomResource):
511
511
  def import_method(self) -> pulumi.Output[builtins.str]:
512
512
  """
513
513
  The wrapping method to be used for incoming key material.
514
- Possible values are: `RSA_OAEP_3072_SHA1_AES_256`, `RSA_OAEP_4096_SHA1_AES_256`.
514
+ Possible values are: `RSA_OAEP_3072_SHA1_AES_256`, `RSA_OAEP_4096_SHA1_AES_256`, `RSA_OAEP_3072_SHA256_AES_256`, `RSA_OAEP_4096_SHA256_AES_256`, `RSA_OAEP_3072_SHA256`, `RSA_OAEP_4096_SHA256`.
515
515
  """
516
516
  return pulumi.get(self, "import_method")
517
517
 
@@ -402,14 +402,16 @@ class ConnectCluster(pulumi.CustomResource):
402
402
  managedkafka = gcp.projects.Service("managedkafka",
403
403
  project=project.project_id,
404
404
  service="managedkafka.googleapis.com",
405
- opts = pulumi.ResourceOptions(depends_on=[wait60_seconds]))
405
+ opts = pulumi.ResourceOptions(depends_on=[compute]))
406
+ wait120_seconds = time.index.Sleep("wait_120_seconds", create_duration=120s,
407
+ opts = pulumi.ResourceOptions(depends_on=[managedkafka]))
406
408
  mkc_secondary_subnet = gcp.compute.Subnetwork("mkc_secondary_subnet",
407
409
  project=project.project_id,
408
410
  name="my-secondary-subnetwork",
409
411
  ip_cidr_range="10.3.0.0/16",
410
412
  region="us-central1",
411
413
  network="default",
412
- opts = pulumi.ResourceOptions(depends_on=[compute]))
414
+ opts = pulumi.ResourceOptions(depends_on=[wait120_seconds]))
413
415
  gmk_cluster = gcp.managedkafka.Cluster("gmk_cluster",
414
416
  project=project.project_id,
415
417
  cluster_id="my-cluster",
@@ -527,14 +529,16 @@ class ConnectCluster(pulumi.CustomResource):
527
529
  managedkafka = gcp.projects.Service("managedkafka",
528
530
  project=project.project_id,
529
531
  service="managedkafka.googleapis.com",
530
- opts = pulumi.ResourceOptions(depends_on=[wait60_seconds]))
532
+ opts = pulumi.ResourceOptions(depends_on=[compute]))
533
+ wait120_seconds = time.index.Sleep("wait_120_seconds", create_duration=120s,
534
+ opts = pulumi.ResourceOptions(depends_on=[managedkafka]))
531
535
  mkc_secondary_subnet = gcp.compute.Subnetwork("mkc_secondary_subnet",
532
536
  project=project.project_id,
533
537
  name="my-secondary-subnetwork",
534
538
  ip_cidr_range="10.3.0.0/16",
535
539
  region="us-central1",
536
540
  network="default",
537
- opts = pulumi.ResourceOptions(depends_on=[compute]))
541
+ opts = pulumi.ResourceOptions(depends_on=[wait120_seconds]))
538
542
  gmk_cluster = gcp.managedkafka.Cluster("gmk_cluster",
539
543
  project=project.project_id,
540
544
  cluster_id="my-cluster",
@@ -313,14 +313,16 @@ class Connector(pulumi.CustomResource):
313
313
  managedkafka = gcp.projects.Service("managedkafka",
314
314
  project=project.project_id,
315
315
  service="managedkafka.googleapis.com",
316
- opts = pulumi.ResourceOptions(depends_on=[wait60_seconds]))
316
+ opts = pulumi.ResourceOptions(depends_on=[compute]))
317
+ wait120_seconds = time.index.Sleep("wait_120_seconds", create_duration=120s,
318
+ opts = pulumi.ResourceOptions(depends_on=[managedkafka]))
317
319
  mkc_secondary_subnet = gcp.compute.Subnetwork("mkc_secondary_subnet",
318
320
  project=project.project_id,
319
321
  name="my-secondary-subnetwork-00",
320
322
  ip_cidr_range="10.5.0.0/16",
321
323
  region="us-central1",
322
324
  network="default",
323
- opts = pulumi.ResourceOptions(depends_on=[compute]))
325
+ opts = pulumi.ResourceOptions(depends_on=[wait120_seconds]))
324
326
  cps_topic = gcp.pubsub.Topic("cps_topic",
325
327
  project=project.project_id,
326
328
  name="my-cps-topic",
@@ -470,14 +472,16 @@ class Connector(pulumi.CustomResource):
470
472
  managedkafka = gcp.projects.Service("managedkafka",
471
473
  project=project.project_id,
472
474
  service="managedkafka.googleapis.com",
473
- opts = pulumi.ResourceOptions(depends_on=[wait60_seconds]))
475
+ opts = pulumi.ResourceOptions(depends_on=[compute]))
476
+ wait120_seconds = time.index.Sleep("wait_120_seconds", create_duration=120s,
477
+ opts = pulumi.ResourceOptions(depends_on=[managedkafka]))
474
478
  mkc_secondary_subnet = gcp.compute.Subnetwork("mkc_secondary_subnet",
475
479
  project=project.project_id,
476
480
  name="my-secondary-subnetwork-00",
477
481
  ip_cidr_range="10.5.0.0/16",
478
482
  region="us-central1",
479
483
  network="default",
480
- opts = pulumi.ResourceOptions(depends_on=[compute]))
484
+ opts = pulumi.ResourceOptions(depends_on=[wait120_seconds]))
481
485
  cps_topic = gcp.pubsub.Topic("cps_topic",
482
486
  project=project.project_id,
483
487
  name="my-cps-topic",
@@ -27,6 +27,7 @@ class UptimeCheckConfigArgs:
27
27
  checker_type: Optional[pulumi.Input[builtins.str]] = None,
28
28
  content_matchers: Optional[pulumi.Input[Sequence[pulumi.Input['UptimeCheckConfigContentMatcherArgs']]]] = None,
29
29
  http_check: Optional[pulumi.Input['UptimeCheckConfigHttpCheckArgs']] = None,
30
+ log_check_failures: Optional[pulumi.Input[builtins.bool]] = None,
30
31
  monitored_resource: Optional[pulumi.Input['UptimeCheckConfigMonitoredResourceArgs']] = None,
31
32
  period: Optional[pulumi.Input[builtins.str]] = None,
32
33
  project: Optional[pulumi.Input[builtins.str]] = None,
@@ -48,6 +49,7 @@ class UptimeCheckConfigArgs:
48
49
  Structure is documented below.
49
50
  :param pulumi.Input['UptimeCheckConfigHttpCheckArgs'] http_check: Contains information needed to make an HTTP or HTTPS check.
50
51
  Structure is documented below.
52
+ :param pulumi.Input[builtins.bool] log_check_failures: Specifies whether to log the results of failed probes to Cloud Logging.
51
53
  :param pulumi.Input['UptimeCheckConfigMonitoredResourceArgs'] monitored_resource: The [monitored resource]
52
54
  (https://cloud.google.com/monitoring/api/resources) associated with the
53
55
  configuration. The following monitored resource types are supported for
@@ -72,6 +74,8 @@ class UptimeCheckConfigArgs:
72
74
  pulumi.set(__self__, "content_matchers", content_matchers)
73
75
  if http_check is not None:
74
76
  pulumi.set(__self__, "http_check", http_check)
77
+ if log_check_failures is not None:
78
+ pulumi.set(__self__, "log_check_failures", log_check_failures)
75
79
  if monitored_resource is not None:
76
80
  pulumi.set(__self__, "monitored_resource", monitored_resource)
77
81
  if period is not None:
@@ -155,6 +159,18 @@ class UptimeCheckConfigArgs:
155
159
  def http_check(self, value: Optional[pulumi.Input['UptimeCheckConfigHttpCheckArgs']]):
156
160
  pulumi.set(self, "http_check", value)
157
161
 
162
+ @property
163
+ @pulumi.getter(name="logCheckFailures")
164
+ def log_check_failures(self) -> Optional[pulumi.Input[builtins.bool]]:
165
+ """
166
+ Specifies whether to log the results of failed probes to Cloud Logging.
167
+ """
168
+ return pulumi.get(self, "log_check_failures")
169
+
170
+ @log_check_failures.setter
171
+ def log_check_failures(self, value: Optional[pulumi.Input[builtins.bool]]):
172
+ pulumi.set(self, "log_check_failures", value)
173
+
158
174
  @property
159
175
  @pulumi.getter(name="monitoredResource")
160
176
  def monitored_resource(self) -> Optional[pulumi.Input['UptimeCheckConfigMonitoredResourceArgs']]:
@@ -266,6 +282,7 @@ class _UptimeCheckConfigState:
266
282
  content_matchers: Optional[pulumi.Input[Sequence[pulumi.Input['UptimeCheckConfigContentMatcherArgs']]]] = None,
267
283
  display_name: Optional[pulumi.Input[builtins.str]] = None,
268
284
  http_check: Optional[pulumi.Input['UptimeCheckConfigHttpCheckArgs']] = None,
285
+ log_check_failures: Optional[pulumi.Input[builtins.bool]] = None,
269
286
  monitored_resource: Optional[pulumi.Input['UptimeCheckConfigMonitoredResourceArgs']] = None,
270
287
  name: Optional[pulumi.Input[builtins.str]] = None,
271
288
  period: Optional[pulumi.Input[builtins.str]] = None,
@@ -286,6 +303,7 @@ class _UptimeCheckConfigState:
286
303
  :param pulumi.Input[builtins.str] display_name: A human-friendly name for the uptime check configuration. The display name should be unique within a Stackdriver Workspace in order to make it easier to identify; however, uniqueness is not enforced.
287
304
  :param pulumi.Input['UptimeCheckConfigHttpCheckArgs'] http_check: Contains information needed to make an HTTP or HTTPS check.
288
305
  Structure is documented below.
306
+ :param pulumi.Input[builtins.bool] log_check_failures: Specifies whether to log the results of failed probes to Cloud Logging.
289
307
  :param pulumi.Input['UptimeCheckConfigMonitoredResourceArgs'] monitored_resource: The [monitored resource]
290
308
  (https://cloud.google.com/monitoring/api/resources) associated with the
291
309
  configuration. The following monitored resource types are supported for
@@ -316,6 +334,8 @@ class _UptimeCheckConfigState:
316
334
  pulumi.set(__self__, "display_name", display_name)
317
335
  if http_check is not None:
318
336
  pulumi.set(__self__, "http_check", http_check)
337
+ if log_check_failures is not None:
338
+ pulumi.set(__self__, "log_check_failures", log_check_failures)
319
339
  if monitored_resource is not None:
320
340
  pulumi.set(__self__, "monitored_resource", monitored_resource)
321
341
  if name is not None:
@@ -390,6 +410,18 @@ class _UptimeCheckConfigState:
390
410
  def http_check(self, value: Optional[pulumi.Input['UptimeCheckConfigHttpCheckArgs']]):
391
411
  pulumi.set(self, "http_check", value)
392
412
 
413
+ @property
414
+ @pulumi.getter(name="logCheckFailures")
415
+ def log_check_failures(self) -> Optional[pulumi.Input[builtins.bool]]:
416
+ """
417
+ Specifies whether to log the results of failed probes to Cloud Logging.
418
+ """
419
+ return pulumi.get(self, "log_check_failures")
420
+
421
+ @log_check_failures.setter
422
+ def log_check_failures(self, value: Optional[pulumi.Input[builtins.bool]]):
423
+ pulumi.set(self, "log_check_failures", value)
424
+
393
425
  @property
394
426
  @pulumi.getter(name="monitoredResource")
395
427
  def monitored_resource(self) -> Optional[pulumi.Input['UptimeCheckConfigMonitoredResourceArgs']]:
@@ -542,6 +574,7 @@ class UptimeCheckConfig(pulumi.CustomResource):
542
574
  content_matchers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['UptimeCheckConfigContentMatcherArgs', 'UptimeCheckConfigContentMatcherArgsDict']]]]] = None,
543
575
  display_name: Optional[pulumi.Input[builtins.str]] = None,
544
576
  http_check: Optional[pulumi.Input[Union['UptimeCheckConfigHttpCheckArgs', 'UptimeCheckConfigHttpCheckArgsDict']]] = None,
577
+ log_check_failures: Optional[pulumi.Input[builtins.bool]] = None,
545
578
  monitored_resource: Optional[pulumi.Input[Union['UptimeCheckConfigMonitoredResourceArgs', 'UptimeCheckConfigMonitoredResourceArgsDict']]] = None,
546
579
  period: Optional[pulumi.Input[builtins.str]] = None,
547
580
  project: Optional[pulumi.Input[builtins.str]] = None,
@@ -572,6 +605,7 @@ class UptimeCheckConfig(pulumi.CustomResource):
572
605
  http = gcp.monitoring.UptimeCheckConfig("http",
573
606
  display_name="http-uptime-check",
574
607
  timeout="60s",
608
+ log_check_failures=True,
575
609
  user_labels={
576
610
  "example-key": "example-value",
577
611
  },
@@ -783,6 +817,7 @@ class UptimeCheckConfig(pulumi.CustomResource):
783
817
  :param pulumi.Input[builtins.str] display_name: A human-friendly name for the uptime check configuration. The display name should be unique within a Stackdriver Workspace in order to make it easier to identify; however, uniqueness is not enforced.
784
818
  :param pulumi.Input[Union['UptimeCheckConfigHttpCheckArgs', 'UptimeCheckConfigHttpCheckArgsDict']] http_check: Contains information needed to make an HTTP or HTTPS check.
785
819
  Structure is documented below.
820
+ :param pulumi.Input[builtins.bool] log_check_failures: Specifies whether to log the results of failed probes to Cloud Logging.
786
821
  :param pulumi.Input[Union['UptimeCheckConfigMonitoredResourceArgs', 'UptimeCheckConfigMonitoredResourceArgsDict']] monitored_resource: The [monitored resource]
787
822
  (https://cloud.google.com/monitoring/api/resources) associated with the
788
823
  configuration. The following monitored resource types are supported for
@@ -829,6 +864,7 @@ class UptimeCheckConfig(pulumi.CustomResource):
829
864
  http = gcp.monitoring.UptimeCheckConfig("http",
830
865
  display_name="http-uptime-check",
831
866
  timeout="60s",
867
+ log_check_failures=True,
832
868
  user_labels={
833
869
  "example-key": "example-value",
834
870
  },
@@ -1050,6 +1086,7 @@ class UptimeCheckConfig(pulumi.CustomResource):
1050
1086
  content_matchers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['UptimeCheckConfigContentMatcherArgs', 'UptimeCheckConfigContentMatcherArgsDict']]]]] = None,
1051
1087
  display_name: Optional[pulumi.Input[builtins.str]] = None,
1052
1088
  http_check: Optional[pulumi.Input[Union['UptimeCheckConfigHttpCheckArgs', 'UptimeCheckConfigHttpCheckArgsDict']]] = None,
1089
+ log_check_failures: Optional[pulumi.Input[builtins.bool]] = None,
1053
1090
  monitored_resource: Optional[pulumi.Input[Union['UptimeCheckConfigMonitoredResourceArgs', 'UptimeCheckConfigMonitoredResourceArgsDict']]] = None,
1054
1091
  period: Optional[pulumi.Input[builtins.str]] = None,
1055
1092
  project: Optional[pulumi.Input[builtins.str]] = None,
@@ -1074,6 +1111,7 @@ class UptimeCheckConfig(pulumi.CustomResource):
1074
1111
  raise TypeError("Missing required property 'display_name'")
1075
1112
  __props__.__dict__["display_name"] = display_name
1076
1113
  __props__.__dict__["http_check"] = http_check
1114
+ __props__.__dict__["log_check_failures"] = log_check_failures
1077
1115
  __props__.__dict__["monitored_resource"] = monitored_resource
1078
1116
  __props__.__dict__["period"] = period
1079
1117
  __props__.__dict__["project"] = project
@@ -1101,6 +1139,7 @@ class UptimeCheckConfig(pulumi.CustomResource):
1101
1139
  content_matchers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['UptimeCheckConfigContentMatcherArgs', 'UptimeCheckConfigContentMatcherArgsDict']]]]] = None,
1102
1140
  display_name: Optional[pulumi.Input[builtins.str]] = None,
1103
1141
  http_check: Optional[pulumi.Input[Union['UptimeCheckConfigHttpCheckArgs', 'UptimeCheckConfigHttpCheckArgsDict']]] = None,
1142
+ log_check_failures: Optional[pulumi.Input[builtins.bool]] = None,
1104
1143
  monitored_resource: Optional[pulumi.Input[Union['UptimeCheckConfigMonitoredResourceArgs', 'UptimeCheckConfigMonitoredResourceArgsDict']]] = None,
1105
1144
  name: Optional[pulumi.Input[builtins.str]] = None,
1106
1145
  period: Optional[pulumi.Input[builtins.str]] = None,
@@ -1126,6 +1165,7 @@ class UptimeCheckConfig(pulumi.CustomResource):
1126
1165
  :param pulumi.Input[builtins.str] display_name: A human-friendly name for the uptime check configuration. The display name should be unique within a Stackdriver Workspace in order to make it easier to identify; however, uniqueness is not enforced.
1127
1166
  :param pulumi.Input[Union['UptimeCheckConfigHttpCheckArgs', 'UptimeCheckConfigHttpCheckArgsDict']] http_check: Contains information needed to make an HTTP or HTTPS check.
1128
1167
  Structure is documented below.
1168
+ :param pulumi.Input[builtins.bool] log_check_failures: Specifies whether to log the results of failed probes to Cloud Logging.
1129
1169
  :param pulumi.Input[Union['UptimeCheckConfigMonitoredResourceArgs', 'UptimeCheckConfigMonitoredResourceArgsDict']] monitored_resource: The [monitored resource]
1130
1170
  (https://cloud.google.com/monitoring/api/resources) associated with the
1131
1171
  configuration. The following monitored resource types are supported for
@@ -1156,6 +1196,7 @@ class UptimeCheckConfig(pulumi.CustomResource):
1156
1196
  __props__.__dict__["content_matchers"] = content_matchers
1157
1197
  __props__.__dict__["display_name"] = display_name
1158
1198
  __props__.__dict__["http_check"] = http_check
1199
+ __props__.__dict__["log_check_failures"] = log_check_failures
1159
1200
  __props__.__dict__["monitored_resource"] = monitored_resource
1160
1201
  __props__.__dict__["name"] = name
1161
1202
  __props__.__dict__["period"] = period
@@ -1204,6 +1245,14 @@ class UptimeCheckConfig(pulumi.CustomResource):
1204
1245
  """
1205
1246
  return pulumi.get(self, "http_check")
1206
1247
 
1248
+ @property
1249
+ @pulumi.getter(name="logCheckFailures")
1250
+ def log_check_failures(self) -> pulumi.Output[Optional[builtins.bool]]:
1251
+ """
1252
+ Specifies whether to log the results of failed probes to Cloud Logging.
1253
+ """
1254
+ return pulumi.get(self, "log_check_failures")
1255
+
1207
1256
  @property
1208
1257
  @pulumi.getter(name="monitoredResource")
1209
1258
  def monitored_resource(self) -> pulumi.Output[Optional['outputs.UptimeCheckConfigMonitoredResource']]:
@@ -26,6 +26,7 @@ class InternalRangeArgs:
26
26
  peering: pulumi.Input[builtins.str],
27
27
  usage: pulumi.Input[builtins.str],
28
28
  description: Optional[pulumi.Input[builtins.str]] = None,
29
+ exclude_cidr_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
29
30
  ip_cidr_range: Optional[pulumi.Input[builtins.str]] = None,
30
31
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
31
32
  migration: Optional[pulumi.Input['InternalRangeMigrationArgs']] = None,
@@ -45,7 +46,11 @@ class InternalRangeArgs:
45
46
  :param pulumi.Input[builtins.str] usage: The type of usage set for this InternalRange.
46
47
  Possible values are: `FOR_VPC`, `EXTERNAL_TO_VPC`, `FOR_MIGRATION`.
47
48
  :param pulumi.Input[builtins.str] description: An optional description of this resource.
49
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] exclude_cidr_ranges: Optional. List of IP CIDR ranges to be excluded. Resulting reserved Internal Range will not overlap with any CIDR blocks mentioned in this list.
50
+ Only IPv4 CIDR ranges are supported.
48
51
  :param pulumi.Input[builtins.str] ip_cidr_range: The IP range that this internal range defines.
52
+ NOTE: IPv6 ranges are limited to usage=EXTERNAL_TO_VPC and peering=FOR_SELF
53
+ NOTE: For IPv6 Ranges this field is compulsory, i.e. the address range must be specified explicitly.
49
54
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: User-defined labels.
50
55
 
51
56
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
@@ -57,6 +62,8 @@ class InternalRangeArgs:
57
62
  Each value may be one of: `OVERLAP_ROUTE_RANGE`, `OVERLAP_EXISTING_SUBNET_RANGE`.
58
63
  :param pulumi.Input[builtins.int] prefix_length: An alternate to ipCidrRange. Can be set when trying to create a reservation that automatically finds a free range of the given size.
59
64
  If both ipCidrRange and prefixLength are set, there is an error if the range sizes do not match. Can also be used during updates to change the range size.
65
+ NOTE: For IPv6 this field only works if ip_cidr_range is set as well, and both fields must match. In other words, with IPv6 this field only works as
66
+ a redundant parameter.
60
67
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
61
68
  If it is not provided, the provider project is used.
62
69
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] target_cidr_ranges: Optional. Can be set to narrow down or pick a different address space while searching for a free range.
@@ -67,6 +74,8 @@ class InternalRangeArgs:
67
74
  pulumi.set(__self__, "usage", usage)
68
75
  if description is not None:
69
76
  pulumi.set(__self__, "description", description)
77
+ if exclude_cidr_ranges is not None:
78
+ pulumi.set(__self__, "exclude_cidr_ranges", exclude_cidr_ranges)
70
79
  if ip_cidr_range is not None:
71
80
  pulumi.set(__self__, "ip_cidr_range", ip_cidr_range)
72
81
  if labels is not None:
@@ -137,11 +146,26 @@ class InternalRangeArgs:
137
146
  def description(self, value: Optional[pulumi.Input[builtins.str]]):
138
147
  pulumi.set(self, "description", value)
139
148
 
149
+ @property
150
+ @pulumi.getter(name="excludeCidrRanges")
151
+ def exclude_cidr_ranges(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
152
+ """
153
+ Optional. List of IP CIDR ranges to be excluded. Resulting reserved Internal Range will not overlap with any CIDR blocks mentioned in this list.
154
+ Only IPv4 CIDR ranges are supported.
155
+ """
156
+ return pulumi.get(self, "exclude_cidr_ranges")
157
+
158
+ @exclude_cidr_ranges.setter
159
+ def exclude_cidr_ranges(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
160
+ pulumi.set(self, "exclude_cidr_ranges", value)
161
+
140
162
  @property
141
163
  @pulumi.getter(name="ipCidrRange")
142
164
  def ip_cidr_range(self) -> Optional[pulumi.Input[builtins.str]]:
143
165
  """
144
166
  The IP range that this internal range defines.
167
+ NOTE: IPv6 ranges are limited to usage=EXTERNAL_TO_VPC and peering=FOR_SELF
168
+ NOTE: For IPv6 Ranges this field is compulsory, i.e. the address range must be specified explicitly.
145
169
  """
146
170
  return pulumi.get(self, "ip_cidr_range")
147
171
 
@@ -208,6 +232,8 @@ class InternalRangeArgs:
208
232
  """
209
233
  An alternate to ipCidrRange. Can be set when trying to create a reservation that automatically finds a free range of the given size.
210
234
  If both ipCidrRange and prefixLength are set, there is an error if the range sizes do not match. Can also be used during updates to change the range size.
235
+ NOTE: For IPv6 this field only works if ip_cidr_range is set as well, and both fields must match. In other words, with IPv6 this field only works as
236
+ a redundant parameter.
211
237
  """
212
238
  return pulumi.get(self, "prefix_length")
213
239
 
@@ -247,6 +273,7 @@ class _InternalRangeState:
247
273
  def __init__(__self__, *,
248
274
  description: Optional[pulumi.Input[builtins.str]] = None,
249
275
  effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
276
+ exclude_cidr_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
250
277
  ip_cidr_range: Optional[pulumi.Input[builtins.str]] = None,
251
278
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
252
279
  migration: Optional[pulumi.Input['InternalRangeMigrationArgs']] = None,
@@ -264,7 +291,11 @@ class _InternalRangeState:
264
291
  Input properties used for looking up and filtering InternalRange resources.
265
292
  :param pulumi.Input[builtins.str] description: An optional description of this resource.
266
293
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
294
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] exclude_cidr_ranges: Optional. List of IP CIDR ranges to be excluded. Resulting reserved Internal Range will not overlap with any CIDR blocks mentioned in this list.
295
+ Only IPv4 CIDR ranges are supported.
267
296
  :param pulumi.Input[builtins.str] ip_cidr_range: The IP range that this internal range defines.
297
+ NOTE: IPv6 ranges are limited to usage=EXTERNAL_TO_VPC and peering=FOR_SELF
298
+ NOTE: For IPv6 Ranges this field is compulsory, i.e. the address range must be specified explicitly.
268
299
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: User-defined labels.
269
300
 
270
301
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
@@ -282,6 +313,8 @@ class _InternalRangeState:
282
313
  - - -
283
314
  :param pulumi.Input[builtins.int] prefix_length: An alternate to ipCidrRange. Can be set when trying to create a reservation that automatically finds a free range of the given size.
284
315
  If both ipCidrRange and prefixLength are set, there is an error if the range sizes do not match. Can also be used during updates to change the range size.
316
+ NOTE: For IPv6 this field only works if ip_cidr_range is set as well, and both fields must match. In other words, with IPv6 this field only works as
317
+ a redundant parameter.
285
318
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
286
319
  If it is not provided, the provider project is used.
287
320
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] pulumi_labels: The combination of labels configured directly on the resource
@@ -298,6 +331,8 @@ class _InternalRangeState:
298
331
  pulumi.set(__self__, "description", description)
299
332
  if effective_labels is not None:
300
333
  pulumi.set(__self__, "effective_labels", effective_labels)
334
+ if exclude_cidr_ranges is not None:
335
+ pulumi.set(__self__, "exclude_cidr_ranges", exclude_cidr_ranges)
301
336
  if ip_cidr_range is not None:
302
337
  pulumi.set(__self__, "ip_cidr_range", ip_cidr_range)
303
338
  if labels is not None:
@@ -349,11 +384,26 @@ class _InternalRangeState:
349
384
  def effective_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
350
385
  pulumi.set(self, "effective_labels", value)
351
386
 
387
+ @property
388
+ @pulumi.getter(name="excludeCidrRanges")
389
+ def exclude_cidr_ranges(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
390
+ """
391
+ Optional. List of IP CIDR ranges to be excluded. Resulting reserved Internal Range will not overlap with any CIDR blocks mentioned in this list.
392
+ Only IPv4 CIDR ranges are supported.
393
+ """
394
+ return pulumi.get(self, "exclude_cidr_ranges")
395
+
396
+ @exclude_cidr_ranges.setter
397
+ def exclude_cidr_ranges(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
398
+ pulumi.set(self, "exclude_cidr_ranges", value)
399
+
352
400
  @property
353
401
  @pulumi.getter(name="ipCidrRange")
354
402
  def ip_cidr_range(self) -> Optional[pulumi.Input[builtins.str]]:
355
403
  """
356
404
  The IP range that this internal range defines.
405
+ NOTE: IPv6 ranges are limited to usage=EXTERNAL_TO_VPC and peering=FOR_SELF
406
+ NOTE: For IPv6 Ranges this field is compulsory, i.e. the address range must be specified explicitly.
357
407
  """
358
408
  return pulumi.get(self, "ip_cidr_range")
359
409
 
@@ -448,6 +498,8 @@ class _InternalRangeState:
448
498
  """
449
499
  An alternate to ipCidrRange. Can be set when trying to create a reservation that automatically finds a free range of the given size.
450
500
  If both ipCidrRange and prefixLength are set, there is an error if the range sizes do not match. Can also be used during updates to change the range size.
501
+ NOTE: For IPv6 this field only works if ip_cidr_range is set as well, and both fields must match. In other words, with IPv6 this field only works as
502
+ a redundant parameter.
451
503
  """
452
504
  return pulumi.get(self, "prefix_length")
453
505
 
@@ -528,6 +580,7 @@ class InternalRange(pulumi.CustomResource):
528
580
  resource_name: str,
529
581
  opts: Optional[pulumi.ResourceOptions] = None,
530
582
  description: Optional[pulumi.Input[builtins.str]] = None,
583
+ exclude_cidr_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
531
584
  ip_cidr_range: Optional[pulumi.Input[builtins.str]] = None,
532
585
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
533
586
  migration: Optional[pulumi.Input[Union['InternalRangeMigrationArgs', 'InternalRangeMigrationArgsDict']]] = None,
@@ -686,7 +739,11 @@ class InternalRange(pulumi.CustomResource):
686
739
  :param str resource_name: The name of the resource.
687
740
  :param pulumi.ResourceOptions opts: Options for the resource.
688
741
  :param pulumi.Input[builtins.str] description: An optional description of this resource.
742
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] exclude_cidr_ranges: Optional. List of IP CIDR ranges to be excluded. Resulting reserved Internal Range will not overlap with any CIDR blocks mentioned in this list.
743
+ Only IPv4 CIDR ranges are supported.
689
744
  :param pulumi.Input[builtins.str] ip_cidr_range: The IP range that this internal range defines.
745
+ NOTE: IPv6 ranges are limited to usage=EXTERNAL_TO_VPC and peering=FOR_SELF
746
+ NOTE: For IPv6 Ranges this field is compulsory, i.e. the address range must be specified explicitly.
690
747
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: User-defined labels.
691
748
 
692
749
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
@@ -704,6 +761,8 @@ class InternalRange(pulumi.CustomResource):
704
761
  - - -
705
762
  :param pulumi.Input[builtins.int] prefix_length: An alternate to ipCidrRange. Can be set when trying to create a reservation that automatically finds a free range of the given size.
706
763
  If both ipCidrRange and prefixLength are set, there is an error if the range sizes do not match. Can also be used during updates to change the range size.
764
+ NOTE: For IPv6 this field only works if ip_cidr_range is set as well, and both fields must match. In other words, with IPv6 this field only works as
765
+ a redundant parameter.
707
766
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
708
767
  If it is not provided, the provider project is used.
709
768
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] target_cidr_ranges: Optional. Can be set to narrow down or pick a different address space while searching for a free range.
@@ -876,6 +935,7 @@ class InternalRange(pulumi.CustomResource):
876
935
  resource_name: str,
877
936
  opts: Optional[pulumi.ResourceOptions] = None,
878
937
  description: Optional[pulumi.Input[builtins.str]] = None,
938
+ exclude_cidr_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
879
939
  ip_cidr_range: Optional[pulumi.Input[builtins.str]] = None,
880
940
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
881
941
  migration: Optional[pulumi.Input[Union['InternalRangeMigrationArgs', 'InternalRangeMigrationArgsDict']]] = None,
@@ -897,6 +957,7 @@ class InternalRange(pulumi.CustomResource):
897
957
  __props__ = InternalRangeArgs.__new__(InternalRangeArgs)
898
958
 
899
959
  __props__.__dict__["description"] = description
960
+ __props__.__dict__["exclude_cidr_ranges"] = exclude_cidr_ranges
900
961
  __props__.__dict__["ip_cidr_range"] = ip_cidr_range
901
962
  __props__.__dict__["labels"] = labels
902
963
  __props__.__dict__["migration"] = migration
@@ -931,6 +992,7 @@ class InternalRange(pulumi.CustomResource):
931
992
  opts: Optional[pulumi.ResourceOptions] = None,
932
993
  description: Optional[pulumi.Input[builtins.str]] = None,
933
994
  effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
995
+ exclude_cidr_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
934
996
  ip_cidr_range: Optional[pulumi.Input[builtins.str]] = None,
935
997
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
936
998
  migration: Optional[pulumi.Input[Union['InternalRangeMigrationArgs', 'InternalRangeMigrationArgsDict']]] = None,
@@ -953,7 +1015,11 @@ class InternalRange(pulumi.CustomResource):
953
1015
  :param pulumi.ResourceOptions opts: Options for the resource.
954
1016
  :param pulumi.Input[builtins.str] description: An optional description of this resource.
955
1017
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
1018
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] exclude_cidr_ranges: Optional. List of IP CIDR ranges to be excluded. Resulting reserved Internal Range will not overlap with any CIDR blocks mentioned in this list.
1019
+ Only IPv4 CIDR ranges are supported.
956
1020
  :param pulumi.Input[builtins.str] ip_cidr_range: The IP range that this internal range defines.
1021
+ NOTE: IPv6 ranges are limited to usage=EXTERNAL_TO_VPC and peering=FOR_SELF
1022
+ NOTE: For IPv6 Ranges this field is compulsory, i.e. the address range must be specified explicitly.
957
1023
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: User-defined labels.
958
1024
 
959
1025
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
@@ -971,6 +1037,8 @@ class InternalRange(pulumi.CustomResource):
971
1037
  - - -
972
1038
  :param pulumi.Input[builtins.int] prefix_length: An alternate to ipCidrRange. Can be set when trying to create a reservation that automatically finds a free range of the given size.
973
1039
  If both ipCidrRange and prefixLength are set, there is an error if the range sizes do not match. Can also be used during updates to change the range size.
1040
+ NOTE: For IPv6 this field only works if ip_cidr_range is set as well, and both fields must match. In other words, with IPv6 this field only works as
1041
+ a redundant parameter.
974
1042
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
975
1043
  If it is not provided, the provider project is used.
976
1044
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] pulumi_labels: The combination of labels configured directly on the resource
@@ -989,6 +1057,7 @@ class InternalRange(pulumi.CustomResource):
989
1057
 
990
1058
  __props__.__dict__["description"] = description
991
1059
  __props__.__dict__["effective_labels"] = effective_labels
1060
+ __props__.__dict__["exclude_cidr_ranges"] = exclude_cidr_ranges
992
1061
  __props__.__dict__["ip_cidr_range"] = ip_cidr_range
993
1062
  __props__.__dict__["labels"] = labels
994
1063
  __props__.__dict__["migration"] = migration
@@ -1020,11 +1089,22 @@ class InternalRange(pulumi.CustomResource):
1020
1089
  """
1021
1090
  return pulumi.get(self, "effective_labels")
1022
1091
 
1092
+ @property
1093
+ @pulumi.getter(name="excludeCidrRanges")
1094
+ def exclude_cidr_ranges(self) -> pulumi.Output[Optional[Sequence[builtins.str]]]:
1095
+ """
1096
+ Optional. List of IP CIDR ranges to be excluded. Resulting reserved Internal Range will not overlap with any CIDR blocks mentioned in this list.
1097
+ Only IPv4 CIDR ranges are supported.
1098
+ """
1099
+ return pulumi.get(self, "exclude_cidr_ranges")
1100
+
1023
1101
  @property
1024
1102
  @pulumi.getter(name="ipCidrRange")
1025
1103
  def ip_cidr_range(self) -> pulumi.Output[builtins.str]:
1026
1104
  """
1027
1105
  The IP range that this internal range defines.
1106
+ NOTE: IPv6 ranges are limited to usage=EXTERNAL_TO_VPC and peering=FOR_SELF
1107
+ NOTE: For IPv6 Ranges this field is compulsory, i.e. the address range must be specified explicitly.
1028
1108
  """
1029
1109
  return pulumi.get(self, "ip_cidr_range")
1030
1110
 
@@ -1091,6 +1171,8 @@ class InternalRange(pulumi.CustomResource):
1091
1171
  """
1092
1172
  An alternate to ipCidrRange. Can be set when trying to create a reservation that automatically finds a free range of the given size.
1093
1173
  If both ipCidrRange and prefixLength are set, there is an error if the range sizes do not match. Can also be used during updates to change the range size.
1174
+ NOTE: For IPv6 this field only works if ip_cidr_range is set as well, and both fields must match. In other words, with IPv6 this field only works as
1175
+ a redundant parameter.
1094
1176
  """
1095
1177
  return pulumi.get(self, "prefix_length")
1096
1178
 
@@ -297,8 +297,6 @@ if not MYPY:
297
297
  sha1_fingerprint: pulumi.Input[builtins.str]
298
298
  """
299
299
  The SHA1 fingerprint of the application. For example, both sha1 formats are acceptable : DA:39:A3:EE:5E:6B:4B:0D:32:55:BF:EF:95:60:18:90:AF:D8:07:09 or DA39A3EE5E6B4B0D3255BFEF95601890AFD80709. Output format is the latter.
300
-
301
- - - -
302
300
  """
303
301
  elif False:
304
302
  ApiKeyRestrictionsAndroidKeyRestrictionsAllowedApplicationArgsDict: TypeAlias = Mapping[str, Any]
@@ -311,8 +309,6 @@ class ApiKeyRestrictionsAndroidKeyRestrictionsAllowedApplicationArgs:
311
309
  """
312
310
  :param pulumi.Input[builtins.str] package_name: The package name of the application.
313
311
  :param pulumi.Input[builtins.str] sha1_fingerprint: The SHA1 fingerprint of the application. For example, both sha1 formats are acceptable : DA:39:A3:EE:5E:6B:4B:0D:32:55:BF:EF:95:60:18:90:AF:D8:07:09 or DA39A3EE5E6B4B0D3255BFEF95601890AFD80709. Output format is the latter.
314
-
315
- - - -
316
312
  """
317
313
  pulumi.set(__self__, "package_name", package_name)
318
314
  pulumi.set(__self__, "sha1_fingerprint", sha1_fingerprint)
@@ -334,8 +330,6 @@ class ApiKeyRestrictionsAndroidKeyRestrictionsAllowedApplicationArgs:
334
330
  def sha1_fingerprint(self) -> pulumi.Input[builtins.str]:
335
331
  """
336
332
  The SHA1 fingerprint of the application. For example, both sha1 formats are acceptable : DA:39:A3:EE:5E:6B:4B:0D:32:55:BF:EF:95:60:18:90:AF:D8:07:09 or DA39A3EE5E6B4B0D3255BFEF95601890AFD80709. Output format is the latter.
337
-
338
- - - -
339
333
  """
340
334
  return pulumi.get(self, "sha1_fingerprint")
341
335