pulumi-gcp 7.31.0a1720850808__py3-none-any.whl → 7.32.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (103) hide show
  1. pulumi_gcp/__init__.py +51 -0
  2. pulumi_gcp/alloydb/cluster.py +0 -24
  3. pulumi_gcp/applicationintegration/auth_config.py +2 -2
  4. pulumi_gcp/bigquery/_inputs.py +0 -12
  5. pulumi_gcp/bigquery/dataset.py +0 -28
  6. pulumi_gcp/bigquery/dataset_access.py +0 -28
  7. pulumi_gcp/bigquery/outputs.py +0 -24
  8. pulumi_gcp/bigquery/reservation_assignment.py +48 -30
  9. pulumi_gcp/bigtable/authorized_view.py +104 -0
  10. pulumi_gcp/certificateauthority/certificate_template.py +2 -2
  11. pulumi_gcp/certificatemanager/_inputs.py +33 -0
  12. pulumi_gcp/certificatemanager/outputs.py +36 -0
  13. pulumi_gcp/certificatemanager/trust_config.py +107 -0
  14. pulumi_gcp/compute/_inputs.py +3 -6
  15. pulumi_gcp/compute/ca_external_account_key.py +2 -2
  16. pulumi_gcp/compute/get_health_check.py +11 -1
  17. pulumi_gcp/compute/global_address.py +16 -4
  18. pulumi_gcp/compute/global_forwarding_rule.py +2 -4
  19. pulumi_gcp/compute/health_check.py +124 -0
  20. pulumi_gcp/compute/instance.py +14 -14
  21. pulumi_gcp/compute/instance_group_membership.py +2 -2
  22. pulumi_gcp/compute/outputs.py +4 -8
  23. pulumi_gcp/compute/region_network_endpoint.py +2 -2
  24. pulumi_gcp/compute/region_network_endpoint_group.py +2 -2
  25. pulumi_gcp/compute/subnetwork.py +2 -2
  26. pulumi_gcp/compute/target_instance.py +2 -2
  27. pulumi_gcp/config/__init__.pyi +4 -0
  28. pulumi_gcp/config/vars.py +8 -0
  29. pulumi_gcp/container/_inputs.py +3 -3
  30. pulumi_gcp/container/outputs.py +4 -4
  31. pulumi_gcp/containeranalysis/note.py +2 -2
  32. pulumi_gcp/dataloss/_inputs.py +3 -0
  33. pulumi_gcp/dataloss/outputs.py +2 -0
  34. pulumi_gcp/dataloss/prevention_job_trigger.py +90 -0
  35. pulumi_gcp/dataplex/_inputs.py +56 -0
  36. pulumi_gcp/dataplex/datascan.py +12 -0
  37. pulumi_gcp/dataplex/outputs.py +52 -0
  38. pulumi_gcp/filestore/backup.py +2 -2
  39. pulumi_gcp/filestore/instance.py +2 -2
  40. pulumi_gcp/filestore/snapshot.py +2 -2
  41. pulumi_gcp/gkehub/__init__.py +1 -0
  42. pulumi_gcp/gkehub/_inputs.py +20 -0
  43. pulumi_gcp/gkehub/get_membership_binding.py +222 -0
  44. pulumi_gcp/gkehub/outputs.py +31 -0
  45. pulumi_gcp/iap/client.py +7 -7
  46. pulumi_gcp/kms/__init__.py +2 -0
  47. pulumi_gcp/kms/_inputs.py +40 -0
  48. pulumi_gcp/kms/crypto_key.py +110 -7
  49. pulumi_gcp/kms/get_crypto_keys.py +143 -0
  50. pulumi_gcp/kms/get_key_rings.py +119 -0
  51. pulumi_gcp/kms/get_kms_crypto_key.py +11 -1
  52. pulumi_gcp/kms/outputs.py +382 -0
  53. pulumi_gcp/logging/_inputs.py +12 -12
  54. pulumi_gcp/logging/folder_bucket_config.py +6 -6
  55. pulumi_gcp/logging/organization_bucket_config.py +6 -6
  56. pulumi_gcp/logging/outputs.py +8 -8
  57. pulumi_gcp/logging/project_bucket_config.py +6 -6
  58. pulumi_gcp/looker/instance.py +2 -2
  59. pulumi_gcp/monitoring/custom_service.py +2 -2
  60. pulumi_gcp/monitoring/generic_service.py +2 -2
  61. pulumi_gcp/monitoring/notification_channel.py +2 -2
  62. pulumi_gcp/monitoring/slo.py +2 -2
  63. pulumi_gcp/netapp/storage_pool.py +132 -53
  64. pulumi_gcp/netapp/volume.py +60 -4
  65. pulumi_gcp/networksecurity/address_group.py +85 -1
  66. pulumi_gcp/networksecurity/firewall_endpoint.py +2 -2
  67. pulumi_gcp/networksecurity/firewall_endpoint_association.py +2 -2
  68. pulumi_gcp/networksecurity/security_profile_group.py +2 -2
  69. pulumi_gcp/orgpolicy/_inputs.py +40 -10
  70. pulumi_gcp/orgpolicy/outputs.py +28 -8
  71. pulumi_gcp/orgpolicy/policy.py +52 -35
  72. pulumi_gcp/privilegedaccessmanager/entitlement.py +4 -0
  73. pulumi_gcp/provider.py +40 -0
  74. pulumi_gcp/pubsub/_inputs.py +3 -3
  75. pulumi_gcp/pubsub/outputs.py +4 -4
  76. pulumi_gcp/pulumi-plugin.json +1 -1
  77. pulumi_gcp/securesourcemanager/__init__.py +5 -0
  78. pulumi_gcp/securesourcemanager/_inputs.py +284 -0
  79. pulumi_gcp/securesourcemanager/get_repository_iam_policy.py +177 -0
  80. pulumi_gcp/securesourcemanager/outputs.py +202 -0
  81. pulumi_gcp/securesourcemanager/repository.py +715 -0
  82. pulumi_gcp/securesourcemanager/repository_iam_binding.py +804 -0
  83. pulumi_gcp/securesourcemanager/repository_iam_member.py +804 -0
  84. pulumi_gcp/securesourcemanager/repository_iam_policy.py +643 -0
  85. pulumi_gcp/securitycenter/__init__.py +2 -0
  86. pulumi_gcp/securitycenter/_inputs.py +186 -0
  87. pulumi_gcp/securitycenter/outputs.py +118 -0
  88. pulumi_gcp/securitycenter/project_notification_config.py +518 -0
  89. pulumi_gcp/securitycenter/v2_organization_notification_config.py +576 -0
  90. pulumi_gcp/securityposture/posture_deployment.py +0 -78
  91. pulumi_gcp/servicenetworking/vpc_service_controls.py +2 -2
  92. pulumi_gcp/siteverification/__init__.py +8 -0
  93. pulumi_gcp/siteverification/get_token.py +221 -0
  94. pulumi_gcp/vertex/_inputs.py +21 -1
  95. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +222 -0
  96. pulumi_gcp/vertex/outputs.py +15 -1
  97. pulumi_gcp/workstations/_inputs.py +33 -1
  98. pulumi_gcp/workstations/outputs.py +23 -1
  99. pulumi_gcp/workstations/workstation_config.py +18 -0
  100. {pulumi_gcp-7.31.0a1720850808.dist-info → pulumi_gcp-7.32.0.dist-info}/METADATA +1 -1
  101. {pulumi_gcp-7.31.0a1720850808.dist-info → pulumi_gcp-7.32.0.dist-info}/RECORD +103 -91
  102. {pulumi_gcp-7.31.0a1720850808.dist-info → pulumi_gcp-7.32.0.dist-info}/WHEEL +0 -0
  103. {pulumi_gcp-7.31.0a1720850808.dist-info → pulumi_gcp-7.32.0.dist-info}/top_level.txt +0 -0
@@ -92,8 +92,8 @@ class InstanceArgs:
92
92
  Please refer to the field 'effective_labels' for all of the labels present on the resource.
93
93
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] metadata: Metadata key/value pairs to make available from
94
94
  within the instance. Ssh keys attached in the Cloud Console will be removed.
95
- Add them to your config in order to keep them attached to your instance. A
96
- list of default metadata values (e.g. ssh-keys) can be found [here](https://cloud.google.com/compute/docs/metadata/default-metadata-values)
95
+ Add them to your config in order to keep them attached to your instance.
96
+ A list of predefined metadata keys (e.g. ssh-keys) can be found [here](https://cloud.google.com/compute/docs/metadata/predefined-metadata-keys)
97
97
 
98
98
  > Depending on the OS you choose for your instance, some metadata keys have
99
99
  special functionality. Most linux-based images will run the content of
@@ -412,8 +412,8 @@ class InstanceArgs:
412
412
  """
413
413
  Metadata key/value pairs to make available from
414
414
  within the instance. Ssh keys attached in the Cloud Console will be removed.
415
- Add them to your config in order to keep them attached to your instance. A
416
- list of default metadata values (e.g. ssh-keys) can be found [here](https://cloud.google.com/compute/docs/metadata/default-metadata-values)
415
+ Add them to your config in order to keep them attached to your instance.
416
+ A list of predefined metadata keys (e.g. ssh-keys) can be found [here](https://cloud.google.com/compute/docs/metadata/predefined-metadata-keys)
417
417
 
418
418
  > Depending on the OS you choose for your instance, some metadata keys have
419
419
  special functionality. Most linux-based images will run the content of
@@ -721,8 +721,8 @@ class _InstanceState:
721
721
  There is a limit of 6.5 GB per CPU unless you add [extended memory](https://cloud.google.com/compute/docs/instances/creating-instance-with-custom-machine-type#extendedmemory). You must do this explicitly by adding the suffix `-ext`, e.g. `custom-2-15360-ext` for 2 vCPU and 15 GB of memory.
722
722
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] metadata: Metadata key/value pairs to make available from
723
723
  within the instance. Ssh keys attached in the Cloud Console will be removed.
724
- Add them to your config in order to keep them attached to your instance. A
725
- list of default metadata values (e.g. ssh-keys) can be found [here](https://cloud.google.com/compute/docs/metadata/default-metadata-values)
724
+ Add them to your config in order to keep them attached to your instance.
725
+ A list of predefined metadata keys (e.g. ssh-keys) can be found [here](https://cloud.google.com/compute/docs/metadata/predefined-metadata-keys)
726
726
 
727
727
  > Depending on the OS you choose for your instance, some metadata keys have
728
728
  special functionality. Most linux-based images will run the content of
@@ -1115,8 +1115,8 @@ class _InstanceState:
1115
1115
  """
1116
1116
  Metadata key/value pairs to make available from
1117
1117
  within the instance. Ssh keys attached in the Cloud Console will be removed.
1118
- Add them to your config in order to keep them attached to your instance. A
1119
- list of default metadata values (e.g. ssh-keys) can be found [here](https://cloud.google.com/compute/docs/metadata/default-metadata-values)
1118
+ Add them to your config in order to keep them attached to your instance.
1119
+ A list of predefined metadata keys (e.g. ssh-keys) can be found [here](https://cloud.google.com/compute/docs/metadata/predefined-metadata-keys)
1120
1120
 
1121
1121
  > Depending on the OS you choose for your instance, some metadata keys have
1122
1122
  special functionality. Most linux-based images will run the content of
@@ -1548,8 +1548,8 @@ class Instance(pulumi.CustomResource):
1548
1548
  There is a limit of 6.5 GB per CPU unless you add [extended memory](https://cloud.google.com/compute/docs/instances/creating-instance-with-custom-machine-type#extendedmemory). You must do this explicitly by adding the suffix `-ext`, e.g. `custom-2-15360-ext` for 2 vCPU and 15 GB of memory.
1549
1549
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] metadata: Metadata key/value pairs to make available from
1550
1550
  within the instance. Ssh keys attached in the Cloud Console will be removed.
1551
- Add them to your config in order to keep them attached to your instance. A
1552
- list of default metadata values (e.g. ssh-keys) can be found [here](https://cloud.google.com/compute/docs/metadata/default-metadata-values)
1551
+ Add them to your config in order to keep them attached to your instance.
1552
+ A list of predefined metadata keys (e.g. ssh-keys) can be found [here](https://cloud.google.com/compute/docs/metadata/predefined-metadata-keys)
1553
1553
 
1554
1554
  > Depending on the OS you choose for your instance, some metadata keys have
1555
1555
  special functionality. Most linux-based images will run the content of
@@ -1882,8 +1882,8 @@ class Instance(pulumi.CustomResource):
1882
1882
  There is a limit of 6.5 GB per CPU unless you add [extended memory](https://cloud.google.com/compute/docs/instances/creating-instance-with-custom-machine-type#extendedmemory). You must do this explicitly by adding the suffix `-ext`, e.g. `custom-2-15360-ext` for 2 vCPU and 15 GB of memory.
1883
1883
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] metadata: Metadata key/value pairs to make available from
1884
1884
  within the instance. Ssh keys attached in the Cloud Console will be removed.
1885
- Add them to your config in order to keep them attached to your instance. A
1886
- list of default metadata values (e.g. ssh-keys) can be found [here](https://cloud.google.com/compute/docs/metadata/default-metadata-values)
1885
+ Add them to your config in order to keep them attached to your instance.
1886
+ A list of predefined metadata keys (e.g. ssh-keys) can be found [here](https://cloud.google.com/compute/docs/metadata/predefined-metadata-keys)
1887
1887
 
1888
1888
  > Depending on the OS you choose for your instance, some metadata keys have
1889
1889
  special functionality. Most linux-based images will run the content of
@@ -2165,8 +2165,8 @@ class Instance(pulumi.CustomResource):
2165
2165
  """
2166
2166
  Metadata key/value pairs to make available from
2167
2167
  within the instance. Ssh keys attached in the Cloud Console will be removed.
2168
- Add them to your config in order to keep them attached to your instance. A
2169
- list of default metadata values (e.g. ssh-keys) can be found [here](https://cloud.google.com/compute/docs/metadata/default-metadata-values)
2168
+ Add them to your config in order to keep them attached to your instance.
2169
+ A list of predefined metadata keys (e.g. ssh-keys) can be found [here](https://cloud.google.com/compute/docs/metadata/predefined-metadata-keys)
2170
2170
 
2171
2171
  > Depending on the OS you choose for your instance, some metadata keys have
2172
2172
  special functionality. Most linux-based images will run the content of
@@ -201,8 +201,8 @@ class InstanceGroupMembership(pulumi.CustomResource):
201
201
  * [API documentation](https://cloud.google.com/compute/docs/reference/rest/v1/instanceGroups)
202
202
  * How-to Guides
203
203
  * [Add instances](https://cloud.google.com/compute/docs/reference/rest/v1/instanceGroups/addInstances)
204
- * [Remove instances](https://cloud.google.com/compute/docs/reference/rest/v1/instanceGroups/removeInstances)
205
204
  * [List instances](https://cloud.google.com/compute/docs/reference/rest/v1/instanceGroups/listInstances)
205
+ * [Remove instances](https://cloud.google.com/compute/docs/reference/rest/v1/instanceGroups/removeInstances)
206
206
 
207
207
  ## Example Usage
208
208
 
@@ -294,8 +294,8 @@ class InstanceGroupMembership(pulumi.CustomResource):
294
294
  * [API documentation](https://cloud.google.com/compute/docs/reference/rest/v1/instanceGroups)
295
295
  * How-to Guides
296
296
  * [Add instances](https://cloud.google.com/compute/docs/reference/rest/v1/instanceGroups/addInstances)
297
- * [Remove instances](https://cloud.google.com/compute/docs/reference/rest/v1/instanceGroups/removeInstances)
298
297
  * [List instances](https://cloud.google.com/compute/docs/reference/rest/v1/instanceGroups/listInstances)
298
+ * [Remove instances](https://cloud.google.com/compute/docs/reference/rest/v1/instanceGroups/removeInstances)
299
299
 
300
300
  ## Example Usage
301
301
 
@@ -29991,8 +29991,7 @@ class ResourcePolicySnapshotSchedulePolicyScheduleHourlySchedule(dict):
29991
29991
  :param int hours_in_cycle: The number of hours between snapshots.
29992
29992
  :param str start_time: Time within the window to start the operations.
29993
29993
  It must be in an hourly format "HH:MM",
29994
- where HH : [00-23] and MM : [00] GMT.
29995
- eg: 21:00
29994
+ where HH : [00-23] and MM : [00] GMT. eg: 21:00
29996
29995
  """
29997
29996
  pulumi.set(__self__, "hours_in_cycle", hours_in_cycle)
29998
29997
  pulumi.set(__self__, "start_time", start_time)
@@ -30011,8 +30010,7 @@ class ResourcePolicySnapshotSchedulePolicyScheduleHourlySchedule(dict):
30011
30010
  """
30012
30011
  Time within the window to start the operations.
30013
30012
  It must be in an hourly format "HH:MM",
30014
- where HH : [00-23] and MM : [00] GMT.
30015
- eg: 21:00
30013
+ where HH : [00-23] and MM : [00] GMT. eg: 21:00
30016
30014
  """
30017
30015
  return pulumi.get(self, "start_time")
30018
30016
 
@@ -49723,8 +49721,7 @@ class GetResourcePolicySnapshotSchedulePolicyScheduleHourlyScheduleResult(dict):
49723
49721
  :param int hours_in_cycle: The number of hours between snapshots.
49724
49722
  :param str start_time: Time within the window to start the operations.
49725
49723
  It must be in an hourly format "HH:MM",
49726
- where HH : [00-23] and MM : [00] GMT.
49727
- eg: 21:00
49724
+ where HH : [00-23] and MM : [00] GMT. eg: 21:00
49728
49725
  """
49729
49726
  pulumi.set(__self__, "hours_in_cycle", hours_in_cycle)
49730
49727
  pulumi.set(__self__, "start_time", start_time)
@@ -49743,8 +49740,7 @@ class GetResourcePolicySnapshotSchedulePolicyScheduleHourlyScheduleResult(dict):
49743
49740
  """
49744
49741
  Time within the window to start the operations.
49745
49742
  It must be in an hourly format "HH:MM",
49746
- where HH : [00-23] and MM : [00] GMT.
49747
- eg: 21:00
49743
+ where HH : [00-23] and MM : [00] GMT. eg: 21:00
49748
49744
  """
49749
49745
  return pulumi.get(self, "start_time")
49750
49746
 
@@ -338,8 +338,8 @@ class RegionNetworkEndpoint(pulumi.CustomResource):
338
338
 
339
339
  * [API documentation](https://cloud.google.com/compute/docs/reference/rest/beta/regionNetworkEndpointGroups)
340
340
  * How-to Guides
341
- * [Official Documentation](https://cloud.google.com/load-balancing/docs/negs/)
342
341
  * [Internet NEGs Official Documentation](https://cloud.google.com/load-balancing/docs/negs/internet-neg-concepts)
342
+ * [Official Documentation](https://cloud.google.com/load-balancing/docs/negs/)
343
343
 
344
344
  ## Example Usage
345
345
 
@@ -491,8 +491,8 @@ class RegionNetworkEndpoint(pulumi.CustomResource):
491
491
 
492
492
  * [API documentation](https://cloud.google.com/compute/docs/reference/rest/beta/regionNetworkEndpointGroups)
493
493
  * How-to Guides
494
- * [Official Documentation](https://cloud.google.com/load-balancing/docs/negs/)
495
494
  * [Internet NEGs Official Documentation](https://cloud.google.com/load-balancing/docs/negs/internet-neg-concepts)
495
+ * [Official Documentation](https://cloud.google.com/load-balancing/docs/negs/)
496
496
 
497
497
  ## Example Usage
498
498
 
@@ -563,8 +563,8 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
563
563
 
564
564
  * [API documentation](https://cloud.google.com/compute/docs/reference/rest/beta/regionNetworkEndpointGroups)
565
565
  * How-to Guides
566
- * [Serverless NEGs Official Documentation](https://cloud.google.com/load-balancing/docs/negs/serverless-neg-concepts)
567
566
  * [Internet NEGs Official Documentation](https://cloud.google.com/load-balancing/docs/negs/internet-neg-concepts)
567
+ * [Serverless NEGs Official Documentation](https://cloud.google.com/load-balancing/docs/negs/serverless-neg-concepts)
568
568
 
569
569
  ## Example Usage
570
570
 
@@ -899,8 +899,8 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
899
899
 
900
900
  * [API documentation](https://cloud.google.com/compute/docs/reference/rest/beta/regionNetworkEndpointGroups)
901
901
  * How-to Guides
902
- * [Serverless NEGs Official Documentation](https://cloud.google.com/load-balancing/docs/negs/serverless-neg-concepts)
903
902
  * [Internet NEGs Official Documentation](https://cloud.google.com/load-balancing/docs/negs/internet-neg-concepts)
903
+ * [Serverless NEGs Official Documentation](https://cloud.google.com/load-balancing/docs/negs/serverless-neg-concepts)
904
904
 
905
905
  ## Example Usage
906
906
 
@@ -872,8 +872,8 @@ class Subnetwork(pulumi.CustomResource):
872
872
 
873
873
  * [API documentation](https://cloud.google.com/compute/docs/reference/rest/v1/subnetworks)
874
874
  * How-to Guides
875
- * [Private Google Access](https://cloud.google.com/vpc/docs/configure-private-google-access)
876
875
  * [Cloud Networking](https://cloud.google.com/vpc/docs/using-vpc)
876
+ * [Private Google Access](https://cloud.google.com/vpc/docs/configure-private-google-access)
877
877
 
878
878
  ## Example Usage
879
879
 
@@ -1128,8 +1128,8 @@ class Subnetwork(pulumi.CustomResource):
1128
1128
 
1129
1129
  * [API documentation](https://cloud.google.com/compute/docs/reference/rest/v1/subnetworks)
1130
1130
  * How-to Guides
1131
- * [Private Google Access](https://cloud.google.com/vpc/docs/configure-private-google-access)
1132
1131
  * [Cloud Networking](https://cloud.google.com/vpc/docs/using-vpc)
1132
+ * [Private Google Access](https://cloud.google.com/vpc/docs/configure-private-google-access)
1133
1133
 
1134
1134
  ## Example Usage
1135
1135
 
@@ -452,7 +452,7 @@ class TargetInstance(pulumi.CustomResource):
452
452
  import pulumi_gcp as gcp
453
453
 
454
454
  target_vm = gcp.compute.get_network(name="default")
455
- vmimage = gcp.compute.get_image(family="debian-10",
455
+ vmimage = gcp.compute.get_image(family="debian-12",
456
456
  project="debian-cloud")
457
457
  target_vm_instance = gcp.compute.Instance("target-vm",
458
458
  name="custom-network-target-vm",
@@ -642,7 +642,7 @@ class TargetInstance(pulumi.CustomResource):
642
642
  import pulumi_gcp as gcp
643
643
 
644
644
  target_vm = gcp.compute.get_network(name="default")
645
- vmimage = gcp.compute.get_image(family="debian-10",
645
+ vmimage = gcp.compute.get_image(family="debian-12",
646
646
  project="debian-cloud")
647
647
  target_vm_instance = gcp.compute.Instance("target-vm",
648
648
  name="custom-network-target-vm",
@@ -305,6 +305,8 @@ securityCenterCustomEndpoint: Optional[str]
305
305
 
306
306
  securityCenterManagementCustomEndpoint: Optional[str]
307
307
 
308
+ securityCenterV2CustomEndpoint: Optional[str]
309
+
308
310
  securityScannerCustomEndpoint: Optional[str]
309
311
 
310
312
  securitypostureCustomEndpoint: Optional[str]
@@ -317,6 +319,8 @@ serviceNetworkingCustomEndpoint: Optional[str]
317
319
 
318
320
  serviceUsageCustomEndpoint: Optional[str]
319
321
 
322
+ siteVerificationCustomEndpoint: Optional[str]
323
+
320
324
  skipRegionValidation: bool
321
325
 
322
326
  sourceRepoCustomEndpoint: Optional[str]
pulumi_gcp/config/vars.py CHANGED
@@ -601,6 +601,10 @@ class _ExportableConfig(types.ModuleType):
601
601
  def security_center_management_custom_endpoint(self) -> Optional[str]:
602
602
  return __config__.get('securityCenterManagementCustomEndpoint')
603
603
 
604
+ @property
605
+ def security_center_v2_custom_endpoint(self) -> Optional[str]:
606
+ return __config__.get('securityCenterV2CustomEndpoint')
607
+
604
608
  @property
605
609
  def security_scanner_custom_endpoint(self) -> Optional[str]:
606
610
  return __config__.get('securityScannerCustomEndpoint')
@@ -625,6 +629,10 @@ class _ExportableConfig(types.ModuleType):
625
629
  def service_usage_custom_endpoint(self) -> Optional[str]:
626
630
  return __config__.get('serviceUsageCustomEndpoint')
627
631
 
632
+ @property
633
+ def site_verification_custom_endpoint(self) -> Optional[str]:
634
+ return __config__.get('siteVerificationCustomEndpoint')
635
+
628
636
  @property
629
637
  def skip_region_validation(self) -> bool:
630
638
  return __config__.get_bool('skipRegionValidation') or (_utilities.get_env_bool('PULUMI_GCP_SKIP_REGION_VALIDATION') or False)
@@ -7610,7 +7610,7 @@ if not MYPY:
7610
7610
  """
7611
7611
  enable_components: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
7612
7612
  """
7613
- The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET` and `CADVISOR`. In beta provider, `WORKLOADS` is supported on top of those 12 values. (`WORKLOADS` is deprecated and removed in GKE 1.24.) `KUBELET` and `CADVISOR` are only supported in GKE 1.29.3-gke.1093000 and above.
7613
+ The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET`, `CADVISOR` and `DCGM`. In beta provider, `WORKLOADS` is supported on top of those 12 values. (`WORKLOADS` is deprecated and removed in GKE 1.24.) `KUBELET` and `CADVISOR` are only supported in GKE 1.29.3-gke.1093000 and above.
7614
7614
  """
7615
7615
  managed_prometheus: NotRequired[pulumi.Input['ClusterMonitoringConfigManagedPrometheusArgsDict']]
7616
7616
  """
@@ -7627,7 +7627,7 @@ class ClusterMonitoringConfigArgs:
7627
7627
  managed_prometheus: Optional[pulumi.Input['ClusterMonitoringConfigManagedPrometheusArgs']] = None):
7628
7628
  """
7629
7629
  :param pulumi.Input[Sequence[pulumi.Input['ClusterMonitoringConfigAdvancedDatapathObservabilityConfigArgs']]] advanced_datapath_observability_configs: Configuration for Advanced Datapath Monitoring. Structure is documented below.
7630
- :param pulumi.Input[Sequence[pulumi.Input[str]]] enable_components: The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET` and `CADVISOR`. In beta provider, `WORKLOADS` is supported on top of those 12 values. (`WORKLOADS` is deprecated and removed in GKE 1.24.) `KUBELET` and `CADVISOR` are only supported in GKE 1.29.3-gke.1093000 and above.
7630
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] enable_components: The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET`, `CADVISOR` and `DCGM`. In beta provider, `WORKLOADS` is supported on top of those 12 values. (`WORKLOADS` is deprecated and removed in GKE 1.24.) `KUBELET` and `CADVISOR` are only supported in GKE 1.29.3-gke.1093000 and above.
7631
7631
  :param pulumi.Input['ClusterMonitoringConfigManagedPrometheusArgs'] managed_prometheus: Configuration for Managed Service for Prometheus. Structure is documented below.
7632
7632
  """
7633
7633
  if advanced_datapath_observability_configs is not None:
@@ -7653,7 +7653,7 @@ class ClusterMonitoringConfigArgs:
7653
7653
  @pulumi.getter(name="enableComponents")
7654
7654
  def enable_components(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
7655
7655
  """
7656
- The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET` and `CADVISOR`. In beta provider, `WORKLOADS` is supported on top of those 12 values. (`WORKLOADS` is deprecated and removed in GKE 1.24.) `KUBELET` and `CADVISOR` are only supported in GKE 1.29.3-gke.1093000 and above.
7656
+ The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET`, `CADVISOR` and `DCGM`. In beta provider, `WORKLOADS` is supported on top of those 12 values. (`WORKLOADS` is deprecated and removed in GKE 1.24.) `KUBELET` and `CADVISOR` are only supported in GKE 1.29.3-gke.1093000 and above.
7657
7657
  """
7658
7658
  return pulumi.get(self, "enable_components")
7659
7659
 
@@ -6286,7 +6286,7 @@ class ClusterMonitoringConfig(dict):
6286
6286
  managed_prometheus: Optional['outputs.ClusterMonitoringConfigManagedPrometheus'] = None):
6287
6287
  """
6288
6288
  :param Sequence['ClusterMonitoringConfigAdvancedDatapathObservabilityConfigArgs'] advanced_datapath_observability_configs: Configuration for Advanced Datapath Monitoring. Structure is documented below.
6289
- :param Sequence[str] enable_components: The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET` and `CADVISOR`. In beta provider, `WORKLOADS` is supported on top of those 12 values. (`WORKLOADS` is deprecated and removed in GKE 1.24.) `KUBELET` and `CADVISOR` are only supported in GKE 1.29.3-gke.1093000 and above.
6289
+ :param Sequence[str] enable_components: The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET`, `CADVISOR` and `DCGM`. In beta provider, `WORKLOADS` is supported on top of those 12 values. (`WORKLOADS` is deprecated and removed in GKE 1.24.) `KUBELET` and `CADVISOR` are only supported in GKE 1.29.3-gke.1093000 and above.
6290
6290
  :param 'ClusterMonitoringConfigManagedPrometheusArgs' managed_prometheus: Configuration for Managed Service for Prometheus. Structure is documented below.
6291
6291
  """
6292
6292
  if advanced_datapath_observability_configs is not None:
@@ -6308,7 +6308,7 @@ class ClusterMonitoringConfig(dict):
6308
6308
  @pulumi.getter(name="enableComponents")
6309
6309
  def enable_components(self) -> Optional[Sequence[str]]:
6310
6310
  """
6311
- The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET` and `CADVISOR`. In beta provider, `WORKLOADS` is supported on top of those 12 values. (`WORKLOADS` is deprecated and removed in GKE 1.24.) `KUBELET` and `CADVISOR` are only supported in GKE 1.29.3-gke.1093000 and above.
6311
+ The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET`, `CADVISOR` and `DCGM`. In beta provider, `WORKLOADS` is supported on top of those 12 values. (`WORKLOADS` is deprecated and removed in GKE 1.24.) `KUBELET` and `CADVISOR` are only supported in GKE 1.29.3-gke.1093000 and above.
6312
6312
  """
6313
6313
  return pulumi.get(self, "enable_components")
6314
6314
 
@@ -16158,7 +16158,7 @@ class GetClusterMonitoringConfigResult(dict):
16158
16158
  managed_prometheuses: Sequence['outputs.GetClusterMonitoringConfigManagedPrometheusResult']):
16159
16159
  """
16160
16160
  :param Sequence['GetClusterMonitoringConfigAdvancedDatapathObservabilityConfigArgs'] advanced_datapath_observability_configs: Configuration of Advanced Datapath Observability features.
16161
- :param Sequence[str] enable_components: GKE components exposing metrics. Valid values include SYSTEM_COMPONENTS, APISERVER, SCHEDULER, CONTROLLER_MANAGER, STORAGE, HPA, POD, DAEMONSET, DEPLOYMENT, STATEFULSET, WORKLOADS, KUBELET and CADVISOR.
16161
+ :param Sequence[str] enable_components: GKE components exposing metrics. Valid values include SYSTEM_COMPONENTS, APISERVER, SCHEDULER, CONTROLLER_MANAGER, STORAGE, HPA, POD, DAEMONSET, DEPLOYMENT, STATEFULSET, WORKLOADS, KUBELET, CADVISOR and DCGM.
16162
16162
  :param Sequence['GetClusterMonitoringConfigManagedPrometheusArgs'] managed_prometheuses: Configuration for Google Cloud Managed Services for Prometheus.
16163
16163
  """
16164
16164
  pulumi.set(__self__, "advanced_datapath_observability_configs", advanced_datapath_observability_configs)
@@ -16177,7 +16177,7 @@ class GetClusterMonitoringConfigResult(dict):
16177
16177
  @pulumi.getter(name="enableComponents")
16178
16178
  def enable_components(self) -> Sequence[str]:
16179
16179
  """
16180
- GKE components exposing metrics. Valid values include SYSTEM_COMPONENTS, APISERVER, SCHEDULER, CONTROLLER_MANAGER, STORAGE, HPA, POD, DAEMONSET, DEPLOYMENT, STATEFULSET, WORKLOADS, KUBELET and CADVISOR.
16180
+ GKE components exposing metrics. Valid values include SYSTEM_COMPONENTS, APISERVER, SCHEDULER, CONTROLLER_MANAGER, STORAGE, HPA, POD, DAEMONSET, DEPLOYMENT, STATEFULSET, WORKLOADS, KUBELET, CADVISOR and DCGM.
16181
16181
  """
16182
16182
  return pulumi.get(self, "enable_components")
16183
16183
 
@@ -387,8 +387,8 @@ class Note(pulumi.CustomResource):
387
387
 
388
388
  * [API documentation](https://cloud.google.com/container-analysis/api/reference/rest/)
389
389
  * How-to Guides
390
- * [Official Documentation](https://cloud.google.com/container-analysis/)
391
390
  * [Creating Attestations (Occurrences)](https://cloud.google.com/binary-authorization/docs/making-attestations)
391
+ * [Official Documentation](https://cloud.google.com/container-analysis/)
392
392
 
393
393
  ## Example Usage
394
394
 
@@ -490,8 +490,8 @@ class Note(pulumi.CustomResource):
490
490
 
491
491
  * [API documentation](https://cloud.google.com/container-analysis/api/reference/rest/)
492
492
  * How-to Guides
493
- * [Official Documentation](https://cloud.google.com/container-analysis/)
494
493
  * [Creating Attestations (Occurrences)](https://cloud.google.com/binary-authorization/docs/making-attestations)
494
+ * [Official Documentation](https://cloud.google.com/container-analysis/)
495
495
 
496
496
  ## Example Usage
497
497
 
@@ -22963,6 +22963,7 @@ if not MYPY:
22963
22963
  """
22964
22964
  How to sample rows if not all rows are scanned. Meaningful only when used in conjunction with either
22965
22965
  rowsLimit or rowsLimitPercent. If not specified, rows are scanned in the order BigQuery reads them.
22966
+ If TimespanConfig is set, set this to an empty string to avoid using the default value.
22966
22967
  Default value is `TOP`.
22967
22968
  Possible values are: `TOP`, `RANDOM_START`.
22968
22969
  """
@@ -22998,6 +22999,7 @@ class PreventionJobTriggerInspectJobStorageConfigBigQueryOptionsArgs:
22998
22999
  rowsLimit and rowsLimitPercent can be specified. Cannot be used in conjunction with TimespanConfig.
22999
23000
  :param pulumi.Input[str] sample_method: How to sample rows if not all rows are scanned. Meaningful only when used in conjunction with either
23000
23001
  rowsLimit or rowsLimitPercent. If not specified, rows are scanned in the order BigQuery reads them.
23002
+ If TimespanConfig is set, set this to an empty string to avoid using the default value.
23001
23003
  Default value is `TOP`.
23002
23004
  Possible values are: `TOP`, `RANDOM_START`.
23003
23005
  """
@@ -23103,6 +23105,7 @@ class PreventionJobTriggerInspectJobStorageConfigBigQueryOptionsArgs:
23103
23105
  """
23104
23106
  How to sample rows if not all rows are scanned. Meaningful only when used in conjunction with either
23105
23107
  rowsLimit or rowsLimitPercent. If not specified, rows are scanned in the order BigQuery reads them.
23108
+ If TimespanConfig is set, set this to an empty string to avoid using the default value.
23106
23109
  Default value is `TOP`.
23107
23110
  Possible values are: `TOP`, `RANDOM_START`.
23108
23111
  """
@@ -17354,6 +17354,7 @@ class PreventionJobTriggerInspectJobStorageConfigBigQueryOptions(dict):
17354
17354
  rowsLimit and rowsLimitPercent can be specified. Cannot be used in conjunction with TimespanConfig.
17355
17355
  :param str sample_method: How to sample rows if not all rows are scanned. Meaningful only when used in conjunction with either
17356
17356
  rowsLimit or rowsLimitPercent. If not specified, rows are scanned in the order BigQuery reads them.
17357
+ If TimespanConfig is set, set this to an empty string to avoid using the default value.
17357
17358
  Default value is `TOP`.
17358
17359
  Possible values are: `TOP`, `RANDOM_START`.
17359
17360
  """
@@ -17435,6 +17436,7 @@ class PreventionJobTriggerInspectJobStorageConfigBigQueryOptions(dict):
17435
17436
  """
17436
17437
  How to sample rows if not all rows are scanned. Meaningful only when used in conjunction with either
17437
17438
  rowsLimit or rowsLimitPercent. If not specified, rows are scanned in the order BigQuery reads them.
17439
+ If TimespanConfig is set, set this to an empty string to avoid using the default value.
17438
17440
  Default value is `TOP`.
17439
17441
  Possible values are: `TOP`, `RANDOM_START`.
17440
17442
  """
@@ -857,6 +857,51 @@ class PreventionJobTrigger(pulumi.CustomResource):
857
857
  },
858
858
  })
859
859
  ```
860
+ ### Dlp Job Trigger Timespan Config Big Query
861
+
862
+ ```python
863
+ import pulumi
864
+ import pulumi_gcp as gcp
865
+
866
+ timespan_config_big_query = gcp.dataloss.PreventionJobTrigger("timespan_config_big_query",
867
+ parent="projects/my-project-name",
868
+ description="BigQuery DLP Job Trigger with timespan config and row limit",
869
+ display_name="bigquery-dlp-job-trigger-limit-timespan",
870
+ triggers=[{
871
+ "schedule": {
872
+ "recurrencePeriodDuration": "86400s",
873
+ },
874
+ }],
875
+ inspect_job={
876
+ "inspectTemplateName": "projects/test/locations/global/inspectTemplates/6425492983381733900",
877
+ "storageConfig": {
878
+ "bigQueryOptions": {
879
+ "tableReference": {
880
+ "projectId": "project",
881
+ "datasetId": "dataset",
882
+ "tableId": "table",
883
+ },
884
+ "sampleMethod": "",
885
+ },
886
+ "timespanConfig": {
887
+ "startTime": "2023-01-01T00:00:23Z",
888
+ "timestampField": {
889
+ "name": "timestamp",
890
+ },
891
+ },
892
+ },
893
+ "actions": [{
894
+ "saveFindings": {
895
+ "outputConfig": {
896
+ "table": {
897
+ "projectId": "project",
898
+ "datasetId": "output",
899
+ },
900
+ },
901
+ },
902
+ }],
903
+ })
904
+ ```
860
905
 
861
906
  ## Import
862
907
 
@@ -1407,6 +1452,51 @@ class PreventionJobTrigger(pulumi.CustomResource):
1407
1452
  },
1408
1453
  })
1409
1454
  ```
1455
+ ### Dlp Job Trigger Timespan Config Big Query
1456
+
1457
+ ```python
1458
+ import pulumi
1459
+ import pulumi_gcp as gcp
1460
+
1461
+ timespan_config_big_query = gcp.dataloss.PreventionJobTrigger("timespan_config_big_query",
1462
+ parent="projects/my-project-name",
1463
+ description="BigQuery DLP Job Trigger with timespan config and row limit",
1464
+ display_name="bigquery-dlp-job-trigger-limit-timespan",
1465
+ triggers=[{
1466
+ "schedule": {
1467
+ "recurrencePeriodDuration": "86400s",
1468
+ },
1469
+ }],
1470
+ inspect_job={
1471
+ "inspectTemplateName": "projects/test/locations/global/inspectTemplates/6425492983381733900",
1472
+ "storageConfig": {
1473
+ "bigQueryOptions": {
1474
+ "tableReference": {
1475
+ "projectId": "project",
1476
+ "datasetId": "dataset",
1477
+ "tableId": "table",
1478
+ },
1479
+ "sampleMethod": "",
1480
+ },
1481
+ "timespanConfig": {
1482
+ "startTime": "2023-01-01T00:00:23Z",
1483
+ "timestampField": {
1484
+ "name": "timestamp",
1485
+ },
1486
+ },
1487
+ },
1488
+ "actions": [{
1489
+ "saveFindings": {
1490
+ "outputConfig": {
1491
+ "table": {
1492
+ "projectId": "project",
1493
+ "datasetId": "output",
1494
+ },
1495
+ },
1496
+ },
1497
+ }],
1498
+ })
1499
+ ```
1410
1500
 
1411
1501
  ## Import
1412
1502
 
@@ -69,6 +69,8 @@ __all__ = [
69
69
  'DatascanDataQualitySpecRuleRowConditionExpectationArgsDict',
70
70
  'DatascanDataQualitySpecRuleSetExpectationArgs',
71
71
  'DatascanDataQualitySpecRuleSetExpectationArgsDict',
72
+ 'DatascanDataQualitySpecRuleSqlAssertionArgs',
73
+ 'DatascanDataQualitySpecRuleSqlAssertionArgsDict',
72
74
  'DatascanDataQualitySpecRuleStatisticRangeExpectationArgs',
73
75
  'DatascanDataQualitySpecRuleStatisticRangeExpectationArgsDict',
74
76
  'DatascanDataQualitySpecRuleTableConditionExpectationArgs',
@@ -1626,6 +1628,11 @@ if not MYPY:
1626
1628
  ColumnMap rule which evaluates whether each column value is contained by a specified set.
1627
1629
  Structure is documented below.
1628
1630
  """
1631
+ sql_assertion: NotRequired[pulumi.Input['DatascanDataQualitySpecRuleSqlAssertionArgsDict']]
1632
+ """
1633
+ Table rule which evaluates whether any row matches invalid state.
1634
+ Structure is documented below.
1635
+ """
1629
1636
  statistic_range_expectation: NotRequired[pulumi.Input['DatascanDataQualitySpecRuleStatisticRangeExpectationArgsDict']]
1630
1637
  """
1631
1638
  ColumnAggregate rule which evaluates whether the column aggregate statistic lies between a specified range.
@@ -1660,6 +1667,7 @@ class DatascanDataQualitySpecRuleArgs:
1660
1667
  regex_expectation: Optional[pulumi.Input['DatascanDataQualitySpecRuleRegexExpectationArgs']] = None,
1661
1668
  row_condition_expectation: Optional[pulumi.Input['DatascanDataQualitySpecRuleRowConditionExpectationArgs']] = None,
1662
1669
  set_expectation: Optional[pulumi.Input['DatascanDataQualitySpecRuleSetExpectationArgs']] = None,
1670
+ sql_assertion: Optional[pulumi.Input['DatascanDataQualitySpecRuleSqlAssertionArgs']] = None,
1663
1671
  statistic_range_expectation: Optional[pulumi.Input['DatascanDataQualitySpecRuleStatisticRangeExpectationArgs']] = None,
1664
1672
  table_condition_expectation: Optional[pulumi.Input['DatascanDataQualitySpecRuleTableConditionExpectationArgs']] = None,
1665
1673
  threshold: Optional[pulumi.Input[float]] = None,
@@ -1684,6 +1692,8 @@ class DatascanDataQualitySpecRuleArgs:
1684
1692
  Structure is documented below.
1685
1693
  :param pulumi.Input['DatascanDataQualitySpecRuleSetExpectationArgs'] set_expectation: ColumnMap rule which evaluates whether each column value is contained by a specified set.
1686
1694
  Structure is documented below.
1695
+ :param pulumi.Input['DatascanDataQualitySpecRuleSqlAssertionArgs'] sql_assertion: Table rule which evaluates whether any row matches invalid state.
1696
+ Structure is documented below.
1687
1697
  :param pulumi.Input['DatascanDataQualitySpecRuleStatisticRangeExpectationArgs'] statistic_range_expectation: ColumnAggregate rule which evaluates whether the column aggregate statistic lies between a specified range.
1688
1698
  Structure is documented below.
1689
1699
  :param pulumi.Input['DatascanDataQualitySpecRuleTableConditionExpectationArgs'] table_condition_expectation: Table rule which evaluates whether the provided expression is true.
@@ -1710,6 +1720,8 @@ class DatascanDataQualitySpecRuleArgs:
1710
1720
  pulumi.set(__self__, "row_condition_expectation", row_condition_expectation)
1711
1721
  if set_expectation is not None:
1712
1722
  pulumi.set(__self__, "set_expectation", set_expectation)
1723
+ if sql_assertion is not None:
1724
+ pulumi.set(__self__, "sql_assertion", sql_assertion)
1713
1725
  if statistic_range_expectation is not None:
1714
1726
  pulumi.set(__self__, "statistic_range_expectation", statistic_range_expectation)
1715
1727
  if table_condition_expectation is not None:
@@ -1848,6 +1860,19 @@ class DatascanDataQualitySpecRuleArgs:
1848
1860
  def set_expectation(self, value: Optional[pulumi.Input['DatascanDataQualitySpecRuleSetExpectationArgs']]):
1849
1861
  pulumi.set(self, "set_expectation", value)
1850
1862
 
1863
+ @property
1864
+ @pulumi.getter(name="sqlAssertion")
1865
+ def sql_assertion(self) -> Optional[pulumi.Input['DatascanDataQualitySpecRuleSqlAssertionArgs']]:
1866
+ """
1867
+ Table rule which evaluates whether any row matches invalid state.
1868
+ Structure is documented below.
1869
+ """
1870
+ return pulumi.get(self, "sql_assertion")
1871
+
1872
+ @sql_assertion.setter
1873
+ def sql_assertion(self, value: Optional[pulumi.Input['DatascanDataQualitySpecRuleSqlAssertionArgs']]):
1874
+ pulumi.set(self, "sql_assertion", value)
1875
+
1851
1876
  @property
1852
1877
  @pulumi.getter(name="statisticRangeExpectation")
1853
1878
  def statistic_range_expectation(self) -> Optional[pulumi.Input['DatascanDataQualitySpecRuleStatisticRangeExpectationArgs']]:
@@ -2102,6 +2127,37 @@ class DatascanDataQualitySpecRuleSetExpectationArgs:
2102
2127
  pulumi.set(self, "values", value)
2103
2128
 
2104
2129
 
2130
+ if not MYPY:
2131
+ class DatascanDataQualitySpecRuleSqlAssertionArgsDict(TypedDict):
2132
+ sql_statement: pulumi.Input[str]
2133
+ """
2134
+ The SQL statement.
2135
+ """
2136
+ elif False:
2137
+ DatascanDataQualitySpecRuleSqlAssertionArgsDict: TypeAlias = Mapping[str, Any]
2138
+
2139
+ @pulumi.input_type
2140
+ class DatascanDataQualitySpecRuleSqlAssertionArgs:
2141
+ def __init__(__self__, *,
2142
+ sql_statement: pulumi.Input[str]):
2143
+ """
2144
+ :param pulumi.Input[str] sql_statement: The SQL statement.
2145
+ """
2146
+ pulumi.set(__self__, "sql_statement", sql_statement)
2147
+
2148
+ @property
2149
+ @pulumi.getter(name="sqlStatement")
2150
+ def sql_statement(self) -> pulumi.Input[str]:
2151
+ """
2152
+ The SQL statement.
2153
+ """
2154
+ return pulumi.get(self, "sql_statement")
2155
+
2156
+ @sql_statement.setter
2157
+ def sql_statement(self, value: pulumi.Input[str]):
2158
+ pulumi.set(self, "sql_statement", value)
2159
+
2160
+
2105
2161
  if not MYPY:
2106
2162
  class DatascanDataQualitySpecRuleStatisticRangeExpectationArgsDict(TypedDict):
2107
2163
  statistic: pulumi.Input[str]
@@ -725,6 +725,12 @@ class Datascan(pulumi.CustomResource):
725
725
  "sqlExpression": "COUNT(*) > 0",
726
726
  },
727
727
  },
728
+ {
729
+ "dimension": "VALIDITY",
730
+ "sqlAssertion": {
731
+ "sqlStatement": "select * from bigquery-public-data.austin_bikeshare.bikeshare_stations where station_id is null",
732
+ },
733
+ },
728
734
  ],
729
735
  },
730
736
  project="my-project-name")
@@ -985,6 +991,12 @@ class Datascan(pulumi.CustomResource):
985
991
  "sqlExpression": "COUNT(*) > 0",
986
992
  },
987
993
  },
994
+ {
995
+ "dimension": "VALIDITY",
996
+ "sqlAssertion": {
997
+ "sqlStatement": "select * from bigquery-public-data.austin_bikeshare.bikeshare_stations where station_id is null",
998
+ },
999
+ },
988
1000
  ],
989
1001
  },
990
1002
  project="my-project-name")