pulumi-gcp 8.1.0a1726293903__py3-none-any.whl → 8.1.0a1726492828__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 (101) hide show
  1. pulumi_gcp/__init__.py +24 -0
  2. pulumi_gcp/alloydb/_inputs.py +94 -0
  3. pulumi_gcp/alloydb/cluster.py +94 -1
  4. pulumi_gcp/alloydb/outputs.py +79 -0
  5. pulumi_gcp/assuredworkloads/workload.py +135 -16
  6. pulumi_gcp/backupdisasterrecovery/__init__.py +1 -0
  7. pulumi_gcp/backupdisasterrecovery/backup_vault.py +1203 -0
  8. pulumi_gcp/bigquery/_inputs.py +33 -0
  9. pulumi_gcp/bigquery/data_transfer_config.py +134 -6
  10. pulumi_gcp/bigquery/outputs.py +36 -0
  11. pulumi_gcp/bigqueryanalyticshub/_inputs.py +169 -7
  12. pulumi_gcp/bigqueryanalyticshub/data_exchange.py +96 -3
  13. pulumi_gcp/bigqueryanalyticshub/listing.py +114 -0
  14. pulumi_gcp/bigqueryanalyticshub/outputs.py +138 -5
  15. pulumi_gcp/bigtable/_inputs.py +21 -1
  16. pulumi_gcp/bigtable/outputs.py +13 -1
  17. pulumi_gcp/bigtable/table.py +34 -0
  18. pulumi_gcp/certificateauthority/authority.py +14 -7
  19. pulumi_gcp/certificatemanager/__init__.py +1 -0
  20. pulumi_gcp/certificatemanager/certificate.py +28 -0
  21. pulumi_gcp/certificatemanager/get_certificates.py +150 -0
  22. pulumi_gcp/certificatemanager/outputs.py +322 -0
  23. pulumi_gcp/cloudbuild/_inputs.py +6 -6
  24. pulumi_gcp/cloudbuild/outputs.py +4 -4
  25. pulumi_gcp/cloudrun/_inputs.py +6 -12
  26. pulumi_gcp/cloudrun/outputs.py +8 -16
  27. pulumi_gcp/cloudrunv2/_inputs.py +72 -15
  28. pulumi_gcp/cloudrunv2/outputs.py +82 -16
  29. pulumi_gcp/cloudrunv2/service.py +50 -4
  30. pulumi_gcp/cloudtasks/_inputs.py +630 -0
  31. pulumi_gcp/cloudtasks/outputs.py +479 -0
  32. pulumi_gcp/cloudtasks/queue.py +238 -0
  33. pulumi_gcp/compute/_inputs.py +129 -9
  34. pulumi_gcp/compute/get_instance.py +1 -1
  35. pulumi_gcp/compute/health_check.py +114 -0
  36. pulumi_gcp/compute/instance.py +86 -4
  37. pulumi_gcp/compute/instance_template.py +66 -0
  38. pulumi_gcp/compute/interconnect.py +28 -21
  39. pulumi_gcp/compute/node_template.py +93 -0
  40. pulumi_gcp/compute/outputs.py +108 -6
  41. pulumi_gcp/compute/target_https_proxy.py +28 -0
  42. pulumi_gcp/container/_inputs.py +140 -3
  43. pulumi_gcp/container/attached_cluster.py +7 -7
  44. pulumi_gcp/container/outputs.py +174 -2
  45. pulumi_gcp/databasemigrationservice/_inputs.py +176 -148
  46. pulumi_gcp/databasemigrationservice/connection_profile.py +206 -0
  47. pulumi_gcp/databasemigrationservice/outputs.py +109 -87
  48. pulumi_gcp/dataloss/_inputs.py +353 -1
  49. pulumi_gcp/dataloss/outputs.py +274 -3
  50. pulumi_gcp/dataproc/_inputs.py +27 -27
  51. pulumi_gcp/dataproc/outputs.py +18 -18
  52. pulumi_gcp/datastream/_inputs.py +69 -1
  53. pulumi_gcp/datastream/outputs.py +44 -2
  54. pulumi_gcp/datastream/stream.py +194 -7
  55. pulumi_gcp/discoveryengine/_inputs.py +188 -0
  56. pulumi_gcp/discoveryengine/data_store.py +14 -14
  57. pulumi_gcp/discoveryengine/outputs.py +153 -1
  58. pulumi_gcp/firebase/database_instance.py +7 -7
  59. pulumi_gcp/gkehub/_inputs.py +25 -1
  60. pulumi_gcp/gkehub/feature_membership.py +12 -6
  61. pulumi_gcp/gkehub/outputs.py +17 -1
  62. pulumi_gcp/iam/_inputs.py +196 -0
  63. pulumi_gcp/iam/get_workload_identity_pool_provider.py +13 -3
  64. pulumi_gcp/iam/outputs.py +295 -0
  65. pulumi_gcp/iam/workload_identity_pool_provider.py +164 -3
  66. pulumi_gcp/kms/__init__.py +2 -0
  67. pulumi_gcp/kms/autokey_config.py +10 -2
  68. pulumi_gcp/kms/get_crypto_key_latest_version.py +222 -0
  69. pulumi_gcp/kms/get_crypto_key_versions.py +175 -0
  70. pulumi_gcp/kms/outputs.py +164 -0
  71. pulumi_gcp/netapp/active_directory.py +6 -6
  72. pulumi_gcp/netapp/backup.py +6 -6
  73. pulumi_gcp/netapp/backup_policy.py +6 -6
  74. pulumi_gcp/netapp/backup_vault.py +6 -6
  75. pulumi_gcp/netapp/storage_pool.py +4 -4
  76. pulumi_gcp/netapp/volume.py +7 -0
  77. pulumi_gcp/networkconnectivity/_inputs.py +21 -1
  78. pulumi_gcp/networkconnectivity/outputs.py +15 -1
  79. pulumi_gcp/networkconnectivity/spoke.py +8 -0
  80. pulumi_gcp/networksecurity/client_tls_policy.py +24 -22
  81. pulumi_gcp/networksecurity/server_tls_policy.py +20 -32
  82. pulumi_gcp/organizations/get_project.py +13 -3
  83. pulumi_gcp/organizations/project.py +88 -3
  84. pulumi_gcp/parallelstore/instance.py +121 -121
  85. pulumi_gcp/projects/iam_member_remove.py +26 -0
  86. pulumi_gcp/projects/usage_export_bucket.py +38 -0
  87. pulumi_gcp/pubsub/_inputs.py +40 -0
  88. pulumi_gcp/pubsub/outputs.py +51 -1
  89. pulumi_gcp/pubsub/subscription.py +6 -0
  90. pulumi_gcp/pulumi-plugin.json +1 -1
  91. pulumi_gcp/redis/_inputs.py +419 -0
  92. pulumi_gcp/redis/cluster.py +123 -0
  93. pulumi_gcp/redis/outputs.py +315 -0
  94. pulumi_gcp/securitycenter/__init__.py +2 -0
  95. pulumi_gcp/securitycenter/v2_folder_scc_big_query_export.py +857 -0
  96. pulumi_gcp/securitycenter/v2_organization_scc_big_query_exports.py +4 -4
  97. pulumi_gcp/securitycenter/v2_project_scc_big_query_export.py +796 -0
  98. {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.1.0a1726492828.dist-info}/METADATA +1 -1
  99. {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.1.0a1726492828.dist-info}/RECORD +101 -95
  100. {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.1.0a1726492828.dist-info}/WHEEL +1 -1
  101. {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.1.0a1726492828.dist-info}/top_level.txt +0 -0
@@ -425,6 +425,14 @@ __all__ = [
425
425
  'PreventionDiscoveryConfigActionPubSubNotificationPubsubConditionExpressionsArgsDict',
426
426
  'PreventionDiscoveryConfigActionPubSubNotificationPubsubConditionExpressionsConditionArgs',
427
427
  'PreventionDiscoveryConfigActionPubSubNotificationPubsubConditionExpressionsConditionArgsDict',
428
+ 'PreventionDiscoveryConfigActionTagResourcesArgs',
429
+ 'PreventionDiscoveryConfigActionTagResourcesArgsDict',
430
+ 'PreventionDiscoveryConfigActionTagResourcesTagConditionArgs',
431
+ 'PreventionDiscoveryConfigActionTagResourcesTagConditionArgsDict',
432
+ 'PreventionDiscoveryConfigActionTagResourcesTagConditionSensitivityScoreArgs',
433
+ 'PreventionDiscoveryConfigActionTagResourcesTagConditionSensitivityScoreArgsDict',
434
+ 'PreventionDiscoveryConfigActionTagResourcesTagConditionTagArgs',
435
+ 'PreventionDiscoveryConfigActionTagResourcesTagConditionTagArgsDict',
428
436
  'PreventionDiscoveryConfigErrorArgs',
429
437
  'PreventionDiscoveryConfigErrorArgsDict',
430
438
  'PreventionDiscoveryConfigErrorDetailsArgs',
@@ -439,6 +447,8 @@ __all__ = [
439
447
  'PreventionDiscoveryConfigTargetBigQueryTargetArgsDict',
440
448
  'PreventionDiscoveryConfigTargetBigQueryTargetCadenceArgs',
441
449
  'PreventionDiscoveryConfigTargetBigQueryTargetCadenceArgsDict',
450
+ 'PreventionDiscoveryConfigTargetBigQueryTargetCadenceInspectTemplateModifiedCadenceArgs',
451
+ 'PreventionDiscoveryConfigTargetBigQueryTargetCadenceInspectTemplateModifiedCadenceArgsDict',
442
452
  'PreventionDiscoveryConfigTargetBigQueryTargetCadenceSchemaModifiedCadenceArgs',
443
453
  'PreventionDiscoveryConfigTargetBigQueryTargetCadenceSchemaModifiedCadenceArgsDict',
444
454
  'PreventionDiscoveryConfigTargetBigQueryTargetCadenceTableModifiedCadenceArgs',
@@ -483,6 +493,8 @@ __all__ = [
483
493
  'PreventionDiscoveryConfigTargetCloudSqlTargetFilterOthersArgsDict',
484
494
  'PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceArgs',
485
495
  'PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceArgsDict',
496
+ 'PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceInspectTemplateModifiedCadenceArgs',
497
+ 'PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceInspectTemplateModifiedCadenceArgsDict',
486
498
  'PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceSchemaModifiedCadenceArgs',
487
499
  'PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceSchemaModifiedCadenceArgsDict',
488
500
  'PreventionDiscoveryConfigTargetCloudStorageTargetArgs',
@@ -15366,6 +15378,11 @@ if not MYPY:
15366
15378
  Publish a message into the Pub/Sub topic.
15367
15379
  Structure is documented below.
15368
15380
  """
15381
+ tag_resources: NotRequired[pulumi.Input['PreventionDiscoveryConfigActionTagResourcesArgsDict']]
15382
+ """
15383
+ Publish a message into the Pub/Sub topic.
15384
+ Structure is documented below.
15385
+ """
15369
15386
  elif False:
15370
15387
  PreventionDiscoveryConfigActionArgsDict: TypeAlias = Mapping[str, Any]
15371
15388
 
@@ -15373,17 +15390,22 @@ elif False:
15373
15390
  class PreventionDiscoveryConfigActionArgs:
15374
15391
  def __init__(__self__, *,
15375
15392
  export_data: Optional[pulumi.Input['PreventionDiscoveryConfigActionExportDataArgs']] = None,
15376
- pub_sub_notification: Optional[pulumi.Input['PreventionDiscoveryConfigActionPubSubNotificationArgs']] = None):
15393
+ pub_sub_notification: Optional[pulumi.Input['PreventionDiscoveryConfigActionPubSubNotificationArgs']] = None,
15394
+ tag_resources: Optional[pulumi.Input['PreventionDiscoveryConfigActionTagResourcesArgs']] = None):
15377
15395
  """
15378
15396
  :param pulumi.Input['PreventionDiscoveryConfigActionExportDataArgs'] export_data: Export data profiles into a provided location
15379
15397
  Structure is documented below.
15380
15398
  :param pulumi.Input['PreventionDiscoveryConfigActionPubSubNotificationArgs'] pub_sub_notification: Publish a message into the Pub/Sub topic.
15381
15399
  Structure is documented below.
15400
+ :param pulumi.Input['PreventionDiscoveryConfigActionTagResourcesArgs'] tag_resources: Publish a message into the Pub/Sub topic.
15401
+ Structure is documented below.
15382
15402
  """
15383
15403
  if export_data is not None:
15384
15404
  pulumi.set(__self__, "export_data", export_data)
15385
15405
  if pub_sub_notification is not None:
15386
15406
  pulumi.set(__self__, "pub_sub_notification", pub_sub_notification)
15407
+ if tag_resources is not None:
15408
+ pulumi.set(__self__, "tag_resources", tag_resources)
15387
15409
 
15388
15410
  @property
15389
15411
  @pulumi.getter(name="exportData")
@@ -15411,6 +15433,19 @@ class PreventionDiscoveryConfigActionArgs:
15411
15433
  def pub_sub_notification(self, value: Optional[pulumi.Input['PreventionDiscoveryConfigActionPubSubNotificationArgs']]):
15412
15434
  pulumi.set(self, "pub_sub_notification", value)
15413
15435
 
15436
+ @property
15437
+ @pulumi.getter(name="tagResources")
15438
+ def tag_resources(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigActionTagResourcesArgs']]:
15439
+ """
15440
+ Publish a message into the Pub/Sub topic.
15441
+ Structure is documented below.
15442
+ """
15443
+ return pulumi.get(self, "tag_resources")
15444
+
15445
+ @tag_resources.setter
15446
+ def tag_resources(self, value: Optional[pulumi.Input['PreventionDiscoveryConfigActionTagResourcesArgs']]):
15447
+ pulumi.set(self, "tag_resources", value)
15448
+
15414
15449
 
15415
15450
  if not MYPY:
15416
15451
  class PreventionDiscoveryConfigActionExportDataArgsDict(TypedDict):
@@ -15771,6 +15806,208 @@ class PreventionDiscoveryConfigActionPubSubNotificationPubsubConditionExpression
15771
15806
  pulumi.set(self, "minimum_sensitivity_score", value)
15772
15807
 
15773
15808
 
15809
+ if not MYPY:
15810
+ class PreventionDiscoveryConfigActionTagResourcesArgsDict(TypedDict):
15811
+ lower_data_risk_to_low: NotRequired[pulumi.Input[bool]]
15812
+ """
15813
+ Whether applying a tag to a resource should lower the risk of the profile for that resource. For example, in conjunction with an [IAM deny policy](https://cloud.google.com/iam/docs/deny-overview), you can deny all principals a permission if a tag value is present, mitigating the risk of the resource. This also lowers the data risk of resources at the lower levels of the resource hierarchy. For example, reducing the data risk of a table data profile also reduces the data risk of the constituent column data profiles.
15814
+ """
15815
+ profile_generations_to_tags: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
15816
+ """
15817
+ The profile generations for which the tag should be attached to resources. If you attach a tag to only new profiles, then if the sensitivity score of a profile subsequently changes, its tag doesn't change. By default, this field includes only new profiles. To include both new and updated profiles for tagging, this field should explicitly include both `PROFILE_GENERATION_NEW` and `PROFILE_GENERATION_UPDATE`.
15818
+ Each value may be one of: `PROFILE_GENERATION_NEW`, `PROFILE_GENERATION_UPDATE`.
15819
+ """
15820
+ tag_conditions: NotRequired[pulumi.Input[Sequence[pulumi.Input['PreventionDiscoveryConfigActionTagResourcesTagConditionArgsDict']]]]
15821
+ """
15822
+ The tags to associate with different conditions.
15823
+ Structure is documented below.
15824
+ """
15825
+ elif False:
15826
+ PreventionDiscoveryConfigActionTagResourcesArgsDict: TypeAlias = Mapping[str, Any]
15827
+
15828
+ @pulumi.input_type
15829
+ class PreventionDiscoveryConfigActionTagResourcesArgs:
15830
+ def __init__(__self__, *,
15831
+ lower_data_risk_to_low: Optional[pulumi.Input[bool]] = None,
15832
+ profile_generations_to_tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
15833
+ tag_conditions: Optional[pulumi.Input[Sequence[pulumi.Input['PreventionDiscoveryConfigActionTagResourcesTagConditionArgs']]]] = None):
15834
+ """
15835
+ :param pulumi.Input[bool] lower_data_risk_to_low: Whether applying a tag to a resource should lower the risk of the profile for that resource. For example, in conjunction with an [IAM deny policy](https://cloud.google.com/iam/docs/deny-overview), you can deny all principals a permission if a tag value is present, mitigating the risk of the resource. This also lowers the data risk of resources at the lower levels of the resource hierarchy. For example, reducing the data risk of a table data profile also reduces the data risk of the constituent column data profiles.
15836
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] profile_generations_to_tags: The profile generations for which the tag should be attached to resources. If you attach a tag to only new profiles, then if the sensitivity score of a profile subsequently changes, its tag doesn't change. By default, this field includes only new profiles. To include both new and updated profiles for tagging, this field should explicitly include both `PROFILE_GENERATION_NEW` and `PROFILE_GENERATION_UPDATE`.
15837
+ Each value may be one of: `PROFILE_GENERATION_NEW`, `PROFILE_GENERATION_UPDATE`.
15838
+ :param pulumi.Input[Sequence[pulumi.Input['PreventionDiscoveryConfigActionTagResourcesTagConditionArgs']]] tag_conditions: The tags to associate with different conditions.
15839
+ Structure is documented below.
15840
+ """
15841
+ if lower_data_risk_to_low is not None:
15842
+ pulumi.set(__self__, "lower_data_risk_to_low", lower_data_risk_to_low)
15843
+ if profile_generations_to_tags is not None:
15844
+ pulumi.set(__self__, "profile_generations_to_tags", profile_generations_to_tags)
15845
+ if tag_conditions is not None:
15846
+ pulumi.set(__self__, "tag_conditions", tag_conditions)
15847
+
15848
+ @property
15849
+ @pulumi.getter(name="lowerDataRiskToLow")
15850
+ def lower_data_risk_to_low(self) -> Optional[pulumi.Input[bool]]:
15851
+ """
15852
+ Whether applying a tag to a resource should lower the risk of the profile for that resource. For example, in conjunction with an [IAM deny policy](https://cloud.google.com/iam/docs/deny-overview), you can deny all principals a permission if a tag value is present, mitigating the risk of the resource. This also lowers the data risk of resources at the lower levels of the resource hierarchy. For example, reducing the data risk of a table data profile also reduces the data risk of the constituent column data profiles.
15853
+ """
15854
+ return pulumi.get(self, "lower_data_risk_to_low")
15855
+
15856
+ @lower_data_risk_to_low.setter
15857
+ def lower_data_risk_to_low(self, value: Optional[pulumi.Input[bool]]):
15858
+ pulumi.set(self, "lower_data_risk_to_low", value)
15859
+
15860
+ @property
15861
+ @pulumi.getter(name="profileGenerationsToTags")
15862
+ def profile_generations_to_tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
15863
+ """
15864
+ The profile generations for which the tag should be attached to resources. If you attach a tag to only new profiles, then if the sensitivity score of a profile subsequently changes, its tag doesn't change. By default, this field includes only new profiles. To include both new and updated profiles for tagging, this field should explicitly include both `PROFILE_GENERATION_NEW` and `PROFILE_GENERATION_UPDATE`.
15865
+ Each value may be one of: `PROFILE_GENERATION_NEW`, `PROFILE_GENERATION_UPDATE`.
15866
+ """
15867
+ return pulumi.get(self, "profile_generations_to_tags")
15868
+
15869
+ @profile_generations_to_tags.setter
15870
+ def profile_generations_to_tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
15871
+ pulumi.set(self, "profile_generations_to_tags", value)
15872
+
15873
+ @property
15874
+ @pulumi.getter(name="tagConditions")
15875
+ def tag_conditions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['PreventionDiscoveryConfigActionTagResourcesTagConditionArgs']]]]:
15876
+ """
15877
+ The tags to associate with different conditions.
15878
+ Structure is documented below.
15879
+ """
15880
+ return pulumi.get(self, "tag_conditions")
15881
+
15882
+ @tag_conditions.setter
15883
+ def tag_conditions(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PreventionDiscoveryConfigActionTagResourcesTagConditionArgs']]]]):
15884
+ pulumi.set(self, "tag_conditions", value)
15885
+
15886
+
15887
+ if not MYPY:
15888
+ class PreventionDiscoveryConfigActionTagResourcesTagConditionArgsDict(TypedDict):
15889
+ sensitivity_score: NotRequired[pulumi.Input['PreventionDiscoveryConfigActionTagResourcesTagConditionSensitivityScoreArgsDict']]
15890
+ """
15891
+ Conditions attaching the tag to a resource on its profile having this sensitivity score.
15892
+ Structure is documented below.
15893
+ """
15894
+ tag: NotRequired[pulumi.Input['PreventionDiscoveryConfigActionTagResourcesTagConditionTagArgsDict']]
15895
+ """
15896
+ The tag value to attach to resources.
15897
+ Structure is documented below.
15898
+ """
15899
+ elif False:
15900
+ PreventionDiscoveryConfigActionTagResourcesTagConditionArgsDict: TypeAlias = Mapping[str, Any]
15901
+
15902
+ @pulumi.input_type
15903
+ class PreventionDiscoveryConfigActionTagResourcesTagConditionArgs:
15904
+ def __init__(__self__, *,
15905
+ sensitivity_score: Optional[pulumi.Input['PreventionDiscoveryConfigActionTagResourcesTagConditionSensitivityScoreArgs']] = None,
15906
+ tag: Optional[pulumi.Input['PreventionDiscoveryConfigActionTagResourcesTagConditionTagArgs']] = None):
15907
+ """
15908
+ :param pulumi.Input['PreventionDiscoveryConfigActionTagResourcesTagConditionSensitivityScoreArgs'] sensitivity_score: Conditions attaching the tag to a resource on its profile having this sensitivity score.
15909
+ Structure is documented below.
15910
+ :param pulumi.Input['PreventionDiscoveryConfigActionTagResourcesTagConditionTagArgs'] tag: The tag value to attach to resources.
15911
+ Structure is documented below.
15912
+ """
15913
+ if sensitivity_score is not None:
15914
+ pulumi.set(__self__, "sensitivity_score", sensitivity_score)
15915
+ if tag is not None:
15916
+ pulumi.set(__self__, "tag", tag)
15917
+
15918
+ @property
15919
+ @pulumi.getter(name="sensitivityScore")
15920
+ def sensitivity_score(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigActionTagResourcesTagConditionSensitivityScoreArgs']]:
15921
+ """
15922
+ Conditions attaching the tag to a resource on its profile having this sensitivity score.
15923
+ Structure is documented below.
15924
+ """
15925
+ return pulumi.get(self, "sensitivity_score")
15926
+
15927
+ @sensitivity_score.setter
15928
+ def sensitivity_score(self, value: Optional[pulumi.Input['PreventionDiscoveryConfigActionTagResourcesTagConditionSensitivityScoreArgs']]):
15929
+ pulumi.set(self, "sensitivity_score", value)
15930
+
15931
+ @property
15932
+ @pulumi.getter
15933
+ def tag(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigActionTagResourcesTagConditionTagArgs']]:
15934
+ """
15935
+ The tag value to attach to resources.
15936
+ Structure is documented below.
15937
+ """
15938
+ return pulumi.get(self, "tag")
15939
+
15940
+ @tag.setter
15941
+ def tag(self, value: Optional[pulumi.Input['PreventionDiscoveryConfigActionTagResourcesTagConditionTagArgs']]):
15942
+ pulumi.set(self, "tag", value)
15943
+
15944
+
15945
+ if not MYPY:
15946
+ class PreventionDiscoveryConfigActionTagResourcesTagConditionSensitivityScoreArgsDict(TypedDict):
15947
+ score: pulumi.Input[str]
15948
+ """
15949
+ The sensitivity score applied to the resource.
15950
+ Possible values are: `SENSITIVITY_LOW`, `SENSITIVITY_MODERATE`, `SENSITIVITY_HIGH`.
15951
+ """
15952
+ elif False:
15953
+ PreventionDiscoveryConfigActionTagResourcesTagConditionSensitivityScoreArgsDict: TypeAlias = Mapping[str, Any]
15954
+
15955
+ @pulumi.input_type
15956
+ class PreventionDiscoveryConfigActionTagResourcesTagConditionSensitivityScoreArgs:
15957
+ def __init__(__self__, *,
15958
+ score: pulumi.Input[str]):
15959
+ """
15960
+ :param pulumi.Input[str] score: The sensitivity score applied to the resource.
15961
+ Possible values are: `SENSITIVITY_LOW`, `SENSITIVITY_MODERATE`, `SENSITIVITY_HIGH`.
15962
+ """
15963
+ pulumi.set(__self__, "score", score)
15964
+
15965
+ @property
15966
+ @pulumi.getter
15967
+ def score(self) -> pulumi.Input[str]:
15968
+ """
15969
+ The sensitivity score applied to the resource.
15970
+ Possible values are: `SENSITIVITY_LOW`, `SENSITIVITY_MODERATE`, `SENSITIVITY_HIGH`.
15971
+ """
15972
+ return pulumi.get(self, "score")
15973
+
15974
+ @score.setter
15975
+ def score(self, value: pulumi.Input[str]):
15976
+ pulumi.set(self, "score", value)
15977
+
15978
+
15979
+ if not MYPY:
15980
+ class PreventionDiscoveryConfigActionTagResourcesTagConditionTagArgsDict(TypedDict):
15981
+ namespaced_value: NotRequired[pulumi.Input[str]]
15982
+ """
15983
+ The namespaced name for the tag value to attach to resources. Must be in the format `{parent_id}/{tag_key_short_name}/{short_name}`, for example, "123456/environment/prod".
15984
+ """
15985
+ elif False:
15986
+ PreventionDiscoveryConfigActionTagResourcesTagConditionTagArgsDict: TypeAlias = Mapping[str, Any]
15987
+
15988
+ @pulumi.input_type
15989
+ class PreventionDiscoveryConfigActionTagResourcesTagConditionTagArgs:
15990
+ def __init__(__self__, *,
15991
+ namespaced_value: Optional[pulumi.Input[str]] = None):
15992
+ """
15993
+ :param pulumi.Input[str] namespaced_value: The namespaced name for the tag value to attach to resources. Must be in the format `{parent_id}/{tag_key_short_name}/{short_name}`, for example, "123456/environment/prod".
15994
+ """
15995
+ if namespaced_value is not None:
15996
+ pulumi.set(__self__, "namespaced_value", namespaced_value)
15997
+
15998
+ @property
15999
+ @pulumi.getter(name="namespacedValue")
16000
+ def namespaced_value(self) -> Optional[pulumi.Input[str]]:
16001
+ """
16002
+ The namespaced name for the tag value to attach to resources. Must be in the format `{parent_id}/{tag_key_short_name}/{short_name}`, for example, "123456/environment/prod".
16003
+ """
16004
+ return pulumi.get(self, "namespaced_value")
16005
+
16006
+ @namespaced_value.setter
16007
+ def namespaced_value(self, value: Optional[pulumi.Input[str]]):
16008
+ pulumi.set(self, "namespaced_value", value)
16009
+
16010
+
15774
16011
  if not MYPY:
15775
16012
  class PreventionDiscoveryConfigErrorArgsDict(TypedDict):
15776
16013
  details: NotRequired[pulumi.Input['PreventionDiscoveryConfigErrorDetailsArgsDict']]
@@ -16206,6 +16443,11 @@ class PreventionDiscoveryConfigTargetBigQueryTargetArgs:
16206
16443
 
16207
16444
  if not MYPY:
16208
16445
  class PreventionDiscoveryConfigTargetBigQueryTargetCadenceArgsDict(TypedDict):
16446
+ inspect_template_modified_cadence: NotRequired[pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetCadenceInspectTemplateModifiedCadenceArgsDict']]
16447
+ """
16448
+ Governs when to update data profiles when the inspection rules defined by the `InspectTemplate` change. If not set, changing the template will not cause a data profile to update.
16449
+ Structure is documented below.
16450
+ """
16209
16451
  schema_modified_cadence: NotRequired[pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetCadenceSchemaModifiedCadenceArgsDict']]
16210
16452
  """
16211
16453
  Governs when to update data profiles when a schema is modified
@@ -16222,19 +16464,37 @@ elif False:
16222
16464
  @pulumi.input_type
16223
16465
  class PreventionDiscoveryConfigTargetBigQueryTargetCadenceArgs:
16224
16466
  def __init__(__self__, *,
16467
+ inspect_template_modified_cadence: Optional[pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetCadenceInspectTemplateModifiedCadenceArgs']] = None,
16225
16468
  schema_modified_cadence: Optional[pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetCadenceSchemaModifiedCadenceArgs']] = None,
16226
16469
  table_modified_cadence: Optional[pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetCadenceTableModifiedCadenceArgs']] = None):
16227
16470
  """
16471
+ :param pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetCadenceInspectTemplateModifiedCadenceArgs'] inspect_template_modified_cadence: Governs when to update data profiles when the inspection rules defined by the `InspectTemplate` change. If not set, changing the template will not cause a data profile to update.
16472
+ Structure is documented below.
16228
16473
  :param pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetCadenceSchemaModifiedCadenceArgs'] schema_modified_cadence: Governs when to update data profiles when a schema is modified
16229
16474
  Structure is documented below.
16230
16475
  :param pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetCadenceTableModifiedCadenceArgs'] table_modified_cadence: Governs when to update profile when a table is modified.
16231
16476
  Structure is documented below.
16232
16477
  """
16478
+ if inspect_template_modified_cadence is not None:
16479
+ pulumi.set(__self__, "inspect_template_modified_cadence", inspect_template_modified_cadence)
16233
16480
  if schema_modified_cadence is not None:
16234
16481
  pulumi.set(__self__, "schema_modified_cadence", schema_modified_cadence)
16235
16482
  if table_modified_cadence is not None:
16236
16483
  pulumi.set(__self__, "table_modified_cadence", table_modified_cadence)
16237
16484
 
16485
+ @property
16486
+ @pulumi.getter(name="inspectTemplateModifiedCadence")
16487
+ def inspect_template_modified_cadence(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetCadenceInspectTemplateModifiedCadenceArgs']]:
16488
+ """
16489
+ Governs when to update data profiles when the inspection rules defined by the `InspectTemplate` change. If not set, changing the template will not cause a data profile to update.
16490
+ Structure is documented below.
16491
+ """
16492
+ return pulumi.get(self, "inspect_template_modified_cadence")
16493
+
16494
+ @inspect_template_modified_cadence.setter
16495
+ def inspect_template_modified_cadence(self, value: Optional[pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetCadenceInspectTemplateModifiedCadenceArgs']]):
16496
+ pulumi.set(self, "inspect_template_modified_cadence", value)
16497
+
16238
16498
  @property
16239
16499
  @pulumi.getter(name="schemaModifiedCadence")
16240
16500
  def schema_modified_cadence(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetCadenceSchemaModifiedCadenceArgs']]:
@@ -16262,6 +16522,41 @@ class PreventionDiscoveryConfigTargetBigQueryTargetCadenceArgs:
16262
16522
  pulumi.set(self, "table_modified_cadence", value)
16263
16523
 
16264
16524
 
16525
+ if not MYPY:
16526
+ class PreventionDiscoveryConfigTargetBigQueryTargetCadenceInspectTemplateModifiedCadenceArgsDict(TypedDict):
16527
+ frequency: NotRequired[pulumi.Input[str]]
16528
+ """
16529
+ How frequently data profiles can be updated when the template is modified. Defaults to never.
16530
+ Possible values are: `UPDATE_FREQUENCY_NEVER`, `UPDATE_FREQUENCY_DAILY`, `UPDATE_FREQUENCY_MONTHLY`.
16531
+ """
16532
+ elif False:
16533
+ PreventionDiscoveryConfigTargetBigQueryTargetCadenceInspectTemplateModifiedCadenceArgsDict: TypeAlias = Mapping[str, Any]
16534
+
16535
+ @pulumi.input_type
16536
+ class PreventionDiscoveryConfigTargetBigQueryTargetCadenceInspectTemplateModifiedCadenceArgs:
16537
+ def __init__(__self__, *,
16538
+ frequency: Optional[pulumi.Input[str]] = None):
16539
+ """
16540
+ :param pulumi.Input[str] frequency: How frequently data profiles can be updated when the template is modified. Defaults to never.
16541
+ Possible values are: `UPDATE_FREQUENCY_NEVER`, `UPDATE_FREQUENCY_DAILY`, `UPDATE_FREQUENCY_MONTHLY`.
16542
+ """
16543
+ if frequency is not None:
16544
+ pulumi.set(__self__, "frequency", frequency)
16545
+
16546
+ @property
16547
+ @pulumi.getter
16548
+ def frequency(self) -> Optional[pulumi.Input[str]]:
16549
+ """
16550
+ How frequently data profiles can be updated when the template is modified. Defaults to never.
16551
+ Possible values are: `UPDATE_FREQUENCY_NEVER`, `UPDATE_FREQUENCY_DAILY`, `UPDATE_FREQUENCY_MONTHLY`.
16552
+ """
16553
+ return pulumi.get(self, "frequency")
16554
+
16555
+ @frequency.setter
16556
+ def frequency(self, value: Optional[pulumi.Input[str]]):
16557
+ pulumi.set(self, "frequency", value)
16558
+
16559
+
16265
16560
  if not MYPY:
16266
16561
  class PreventionDiscoveryConfigTargetBigQueryTargetCadenceSchemaModifiedCadenceArgsDict(TypedDict):
16267
16562
  frequency: NotRequired[pulumi.Input[str]]
@@ -17372,6 +17667,11 @@ class PreventionDiscoveryConfigTargetCloudSqlTargetFilterOthersArgs:
17372
17667
 
17373
17668
  if not MYPY:
17374
17669
  class PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceArgsDict(TypedDict):
17670
+ inspect_template_modified_cadence: NotRequired[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceInspectTemplateModifiedCadenceArgsDict']]
17671
+ """
17672
+ Governs when to update data profiles when the inspection rules defined by the `InspectTemplate` change. If not set, changing the template will not cause a data profile to update.
17673
+ Structure is documented below.
17674
+ """
17375
17675
  refresh_frequency: NotRequired[pulumi.Input[str]]
17376
17676
  """
17377
17677
  Data changes in Cloud Storage can't trigger reprofiling. If you set this field, profiles are refreshed at this frequency regardless of whether the underlying buckets have changes. Defaults to never.
@@ -17388,19 +17688,37 @@ elif False:
17388
17688
  @pulumi.input_type
17389
17689
  class PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceArgs:
17390
17690
  def __init__(__self__, *,
17691
+ inspect_template_modified_cadence: Optional[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceInspectTemplateModifiedCadenceArgs']] = None,
17391
17692
  refresh_frequency: Optional[pulumi.Input[str]] = None,
17392
17693
  schema_modified_cadence: Optional[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceSchemaModifiedCadenceArgs']] = None):
17393
17694
  """
17695
+ :param pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceInspectTemplateModifiedCadenceArgs'] inspect_template_modified_cadence: Governs when to update data profiles when the inspection rules defined by the `InspectTemplate` change. If not set, changing the template will not cause a data profile to update.
17696
+ Structure is documented below.
17394
17697
  :param pulumi.Input[str] refresh_frequency: Data changes in Cloud Storage can't trigger reprofiling. If you set this field, profiles are refreshed at this frequency regardless of whether the underlying buckets have changes. Defaults to never.
17395
17698
  Possible values are: `UPDATE_FREQUENCY_NEVER`, `UPDATE_FREQUENCY_DAILY`, `UPDATE_FREQUENCY_MONTHLY`.
17396
17699
  :param pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceSchemaModifiedCadenceArgs'] schema_modified_cadence: Governs when to update data profiles when a schema is modified
17397
17700
  Structure is documented below.
17398
17701
  """
17702
+ if inspect_template_modified_cadence is not None:
17703
+ pulumi.set(__self__, "inspect_template_modified_cadence", inspect_template_modified_cadence)
17399
17704
  if refresh_frequency is not None:
17400
17705
  pulumi.set(__self__, "refresh_frequency", refresh_frequency)
17401
17706
  if schema_modified_cadence is not None:
17402
17707
  pulumi.set(__self__, "schema_modified_cadence", schema_modified_cadence)
17403
17708
 
17709
+ @property
17710
+ @pulumi.getter(name="inspectTemplateModifiedCadence")
17711
+ def inspect_template_modified_cadence(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceInspectTemplateModifiedCadenceArgs']]:
17712
+ """
17713
+ Governs when to update data profiles when the inspection rules defined by the `InspectTemplate` change. If not set, changing the template will not cause a data profile to update.
17714
+ Structure is documented below.
17715
+ """
17716
+ return pulumi.get(self, "inspect_template_modified_cadence")
17717
+
17718
+ @inspect_template_modified_cadence.setter
17719
+ def inspect_template_modified_cadence(self, value: Optional[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceInspectTemplateModifiedCadenceArgs']]):
17720
+ pulumi.set(self, "inspect_template_modified_cadence", value)
17721
+
17404
17722
  @property
17405
17723
  @pulumi.getter(name="refreshFrequency")
17406
17724
  def refresh_frequency(self) -> Optional[pulumi.Input[str]]:
@@ -17428,6 +17746,40 @@ class PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceArgs:
17428
17746
  pulumi.set(self, "schema_modified_cadence", value)
17429
17747
 
17430
17748
 
17749
+ if not MYPY:
17750
+ class PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceInspectTemplateModifiedCadenceArgsDict(TypedDict):
17751
+ frequency: pulumi.Input[str]
17752
+ """
17753
+ How frequently data profiles can be updated when the template is modified. Defaults to never.
17754
+ Possible values are: `UPDATE_FREQUENCY_NEVER`, `UPDATE_FREQUENCY_DAILY`, `UPDATE_FREQUENCY_MONTHLY`.
17755
+ """
17756
+ elif False:
17757
+ PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceInspectTemplateModifiedCadenceArgsDict: TypeAlias = Mapping[str, Any]
17758
+
17759
+ @pulumi.input_type
17760
+ class PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceInspectTemplateModifiedCadenceArgs:
17761
+ def __init__(__self__, *,
17762
+ frequency: pulumi.Input[str]):
17763
+ """
17764
+ :param pulumi.Input[str] frequency: How frequently data profiles can be updated when the template is modified. Defaults to never.
17765
+ Possible values are: `UPDATE_FREQUENCY_NEVER`, `UPDATE_FREQUENCY_DAILY`, `UPDATE_FREQUENCY_MONTHLY`.
17766
+ """
17767
+ pulumi.set(__self__, "frequency", frequency)
17768
+
17769
+ @property
17770
+ @pulumi.getter
17771
+ def frequency(self) -> pulumi.Input[str]:
17772
+ """
17773
+ How frequently data profiles can be updated when the template is modified. Defaults to never.
17774
+ Possible values are: `UPDATE_FREQUENCY_NEVER`, `UPDATE_FREQUENCY_DAILY`, `UPDATE_FREQUENCY_MONTHLY`.
17775
+ """
17776
+ return pulumi.get(self, "frequency")
17777
+
17778
+ @frequency.setter
17779
+ def frequency(self, value: pulumi.Input[str]):
17780
+ pulumi.set(self, "frequency", value)
17781
+
17782
+
17431
17783
  if not MYPY:
17432
17784
  class PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceSchemaModifiedCadenceArgsDict(TypedDict):
17433
17785
  frequency: NotRequired[pulumi.Input[str]]