pulumi-gcp 9.2.0a1759043191__py3-none-any.whl → 9.3.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 (76) hide show
  1. pulumi_gcp/__init__.py +32 -0
  2. pulumi_gcp/apigee/__init__.py +1 -0
  3. pulumi_gcp/apigee/api_deployment.py +372 -0
  4. pulumi_gcp/apihub/plugin.py +1 -1
  5. pulumi_gcp/artifactregistry/__init__.py +2 -0
  6. pulumi_gcp/artifactregistry/get_maven_artifacts.py +164 -0
  7. pulumi_gcp/artifactregistry/get_npm_packages.py +164 -0
  8. pulumi_gcp/artifactregistry/outputs.py +165 -0
  9. pulumi_gcp/cloudrunv2/_inputs.py +823 -15
  10. pulumi_gcp/cloudrunv2/outputs.py +1749 -743
  11. pulumi_gcp/cloudrunv2/worker_pool.py +110 -0
  12. pulumi_gcp/compute/_inputs.py +28 -0
  13. pulumi_gcp/compute/outputs.py +20 -1
  14. pulumi_gcp/compute/vpn_tunnel.py +97 -23
  15. pulumi_gcp/compute/wire_group.py +2 -0
  16. pulumi_gcp/dataloss/_inputs.py +970 -30
  17. pulumi_gcp/dataloss/outputs.py +850 -20
  18. pulumi_gcp/dataloss/prevention_discovery_config.py +54 -0
  19. pulumi_gcp/diagflow/_inputs.py +66 -0
  20. pulumi_gcp/diagflow/conversation_profile.py +84 -0
  21. pulumi_gcp/diagflow/outputs.py +57 -0
  22. pulumi_gcp/discoveryengine/__init__.py +1 -0
  23. pulumi_gcp/discoveryengine/_inputs.py +187 -0
  24. pulumi_gcp/discoveryengine/data_connector.py +1368 -0
  25. pulumi_gcp/discoveryengine/outputs.py +135 -0
  26. pulumi_gcp/discoveryengine/search_engine.py +47 -0
  27. pulumi_gcp/gkebackup/_inputs.py +111 -0
  28. pulumi_gcp/gkebackup/backup_plan.py +72 -0
  29. pulumi_gcp/gkebackup/outputs.py +84 -0
  30. pulumi_gcp/kms/__init__.py +1 -0
  31. pulumi_gcp/kms/_inputs.py +43 -0
  32. pulumi_gcp/kms/organization_kaj_policy_config.py +290 -0
  33. pulumi_gcp/kms/outputs.py +43 -0
  34. pulumi_gcp/logging/metric.py +2 -2
  35. pulumi_gcp/looker/instance.py +51 -0
  36. pulumi_gcp/managedkafka/connect_cluster.py +20 -82
  37. pulumi_gcp/managedkafka/connector.py +24 -94
  38. pulumi_gcp/netapp/_inputs.py +28 -5
  39. pulumi_gcp/netapp/outputs.py +19 -3
  40. pulumi_gcp/netapp/storage_pool.py +56 -0
  41. pulumi_gcp/netapp/volume.py +28 -0
  42. pulumi_gcp/networkconnectivity/spoke.py +14 -14
  43. pulumi_gcp/networksecurity/mirroring_endpoint_group.py +211 -23
  44. pulumi_gcp/oracledatabase/odb_network.py +101 -2
  45. pulumi_gcp/orgpolicy/policy.py +2 -2
  46. pulumi_gcp/privilegedaccessmanager/_inputs.py +27 -4
  47. pulumi_gcp/privilegedaccessmanager/outputs.py +31 -6
  48. pulumi_gcp/pubsub/get_subscription.py +12 -1
  49. pulumi_gcp/pubsub/get_topic.py +15 -4
  50. pulumi_gcp/pubsub/subscription.py +153 -7
  51. pulumi_gcp/pubsub/topic.py +145 -3
  52. pulumi_gcp/pulumi-plugin.json +1 -1
  53. pulumi_gcp/saasruntime/__init__.py +1 -0
  54. pulumi_gcp/saasruntime/_inputs.py +60 -0
  55. pulumi_gcp/saasruntime/outputs.py +55 -0
  56. pulumi_gcp/saasruntime/rollout_kind.py +1086 -0
  57. pulumi_gcp/sql/_inputs.py +122 -3
  58. pulumi_gcp/sql/database_instance.py +47 -0
  59. pulumi_gcp/sql/get_database_instance.py +12 -1
  60. pulumi_gcp/sql/outputs.py +233 -2
  61. pulumi_gcp/storage/bucket.py +52 -24
  62. pulumi_gcp/storage/get_insights_dataset_config.py +12 -1
  63. pulumi_gcp/storage/insights_dataset_config.py +49 -0
  64. pulumi_gcp/storage/insights_report_config.py +47 -0
  65. pulumi_gcp/vertex/_inputs.py +339 -1
  66. pulumi_gcp/vertex/ai_endpoint.py +4 -4
  67. pulumi_gcp/vertex/ai_endpoint_with_model_garden_deployment.py +102 -0
  68. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
  69. pulumi_gcp/vertex/ai_index.py +74 -2
  70. pulumi_gcp/vertex/ai_index_endpoint.py +54 -0
  71. pulumi_gcp/vertex/get_ai_index.py +12 -1
  72. pulumi_gcp/vertex/outputs.py +303 -1
  73. {pulumi_gcp-9.2.0a1759043191.dist-info → pulumi_gcp-9.3.0.dist-info}/METADATA +1 -1
  74. {pulumi_gcp-9.2.0a1759043191.dist-info → pulumi_gcp-9.3.0.dist-info}/RECORD +76 -70
  75. {pulumi_gcp-9.2.0a1759043191.dist-info → pulumi_gcp-9.3.0.dist-info}/WHEEL +0 -0
  76. {pulumi_gcp-9.2.0a1759043191.dist-info → pulumi_gcp-9.3.0.dist-info}/top_level.txt +0 -0
@@ -441,6 +441,10 @@ __all__ = [
441
441
  'PreventionDiscoveryConfigOrgConfigArgsDict',
442
442
  'PreventionDiscoveryConfigOrgConfigLocationArgs',
443
443
  'PreventionDiscoveryConfigOrgConfigLocationArgsDict',
444
+ 'PreventionDiscoveryConfigOtherCloudStartingLocationArgs',
445
+ 'PreventionDiscoveryConfigOtherCloudStartingLocationArgsDict',
446
+ 'PreventionDiscoveryConfigOtherCloudStartingLocationAwsLocationArgs',
447
+ 'PreventionDiscoveryConfigOtherCloudStartingLocationAwsLocationArgsDict',
444
448
  'PreventionDiscoveryConfigTargetArgs',
445
449
  'PreventionDiscoveryConfigTargetArgsDict',
446
450
  'PreventionDiscoveryConfigTargetBigQueryTargetArgs',
@@ -523,6 +527,40 @@ __all__ = [
523
527
  'PreventionDiscoveryConfigTargetCloudStorageTargetGenerationCadenceArgsDict',
524
528
  'PreventionDiscoveryConfigTargetCloudStorageTargetGenerationCadenceInspectTemplateModifiedCadenceArgs',
525
529
  'PreventionDiscoveryConfigTargetCloudStorageTargetGenerationCadenceInspectTemplateModifiedCadenceArgsDict',
530
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetArgs',
531
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetArgsDict',
532
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetConditionsArgs',
533
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetConditionsArgsDict',
534
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetConditionsAmazonS3BucketConditionsArgs',
535
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetConditionsAmazonS3BucketConditionsArgsDict',
536
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetDataSourceTypeArgs',
537
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetDataSourceTypeArgsDict',
538
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetDisabledArgs',
539
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetDisabledArgsDict',
540
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetFilterArgs',
541
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetFilterArgsDict',
542
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionArgs',
543
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionArgsDict',
544
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesArgs',
545
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesArgsDict',
546
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternArgs',
547
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternArgsDict',
548
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternAmazonS3BucketRegexArgs',
549
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternAmazonS3BucketRegexArgsDict',
550
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternAmazonS3BucketRegexAwsAccountRegexArgs',
551
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternAmazonS3BucketRegexAwsAccountRegexArgsDict',
552
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetFilterOthersArgs',
553
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetFilterOthersArgsDict',
554
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceArgs',
555
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceArgsDict',
556
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceAmazonS3BucketArgs',
557
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceAmazonS3BucketArgsDict',
558
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceAmazonS3BucketAwsAccountArgs',
559
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceAmazonS3BucketAwsAccountArgsDict',
560
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetGenerationCadenceArgs',
561
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetGenerationCadenceArgsDict',
562
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetGenerationCadenceInspectTemplateModifiedCadenceArgs',
563
+ 'PreventionDiscoveryConfigTargetOtherCloudTargetGenerationCadenceInspectTemplateModifiedCadenceArgsDict',
526
564
  'PreventionDiscoveryConfigTargetSecretsTargetArgs',
527
565
  'PreventionDiscoveryConfigTargetSecretsTargetArgsDict',
528
566
  'PreventionInspectTemplateInspectConfigArgs',
@@ -16143,6 +16181,93 @@ class PreventionDiscoveryConfigOrgConfigLocationArgs:
16143
16181
  pulumi.set(self, "organization_id", value)
16144
16182
 
16145
16183
 
16184
+ if not MYPY:
16185
+ class PreventionDiscoveryConfigOtherCloudStartingLocationArgsDict(TypedDict):
16186
+ aws_location: NotRequired[pulumi.Input['PreventionDiscoveryConfigOtherCloudStartingLocationAwsLocationArgsDict']]
16187
+ """
16188
+ A nested object resource.
16189
+ Structure is documented below.
16190
+ """
16191
+ elif False:
16192
+ PreventionDiscoveryConfigOtherCloudStartingLocationArgsDict: TypeAlias = Mapping[str, Any]
16193
+
16194
+ @pulumi.input_type
16195
+ class PreventionDiscoveryConfigOtherCloudStartingLocationArgs:
16196
+ def __init__(__self__, *,
16197
+ aws_location: Optional[pulumi.Input['PreventionDiscoveryConfigOtherCloudStartingLocationAwsLocationArgs']] = None):
16198
+ """
16199
+ :param pulumi.Input['PreventionDiscoveryConfigOtherCloudStartingLocationAwsLocationArgs'] aws_location: A nested object resource.
16200
+ Structure is documented below.
16201
+ """
16202
+ if aws_location is not None:
16203
+ pulumi.set(__self__, "aws_location", aws_location)
16204
+
16205
+ @_builtins.property
16206
+ @pulumi.getter(name="awsLocation")
16207
+ def aws_location(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigOtherCloudStartingLocationAwsLocationArgs']]:
16208
+ """
16209
+ A nested object resource.
16210
+ Structure is documented below.
16211
+ """
16212
+ return pulumi.get(self, "aws_location")
16213
+
16214
+ @aws_location.setter
16215
+ def aws_location(self, value: Optional[pulumi.Input['PreventionDiscoveryConfigOtherCloudStartingLocationAwsLocationArgs']]):
16216
+ pulumi.set(self, "aws_location", value)
16217
+
16218
+
16219
+ if not MYPY:
16220
+ class PreventionDiscoveryConfigOtherCloudStartingLocationAwsLocationArgsDict(TypedDict):
16221
+ account_id: NotRequired[pulumi.Input[_builtins.str]]
16222
+ """
16223
+ The AWS account ID that this discovery config applies to. Within an organization, you can find the AWS account ID inside an AWS account ARN. Example: arn:<partition>:organizations::<management-account-id>:account/<organization-id>/<account-id>
16224
+ """
16225
+ all_asset_inventory_assets: NotRequired[pulumi.Input[_builtins.bool]]
16226
+ """
16227
+ All AWS assets stored in Asset Inventory that didn't match other AWS discovery configs.
16228
+ """
16229
+ elif False:
16230
+ PreventionDiscoveryConfigOtherCloudStartingLocationAwsLocationArgsDict: TypeAlias = Mapping[str, Any]
16231
+
16232
+ @pulumi.input_type
16233
+ class PreventionDiscoveryConfigOtherCloudStartingLocationAwsLocationArgs:
16234
+ def __init__(__self__, *,
16235
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
16236
+ all_asset_inventory_assets: Optional[pulumi.Input[_builtins.bool]] = None):
16237
+ """
16238
+ :param pulumi.Input[_builtins.str] account_id: The AWS account ID that this discovery config applies to. Within an organization, you can find the AWS account ID inside an AWS account ARN. Example: arn:<partition>:organizations::<management-account-id>:account/<organization-id>/<account-id>
16239
+ :param pulumi.Input[_builtins.bool] all_asset_inventory_assets: All AWS assets stored in Asset Inventory that didn't match other AWS discovery configs.
16240
+ """
16241
+ if account_id is not None:
16242
+ pulumi.set(__self__, "account_id", account_id)
16243
+ if all_asset_inventory_assets is not None:
16244
+ pulumi.set(__self__, "all_asset_inventory_assets", all_asset_inventory_assets)
16245
+
16246
+ @_builtins.property
16247
+ @pulumi.getter(name="accountId")
16248
+ def account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
16249
+ """
16250
+ The AWS account ID that this discovery config applies to. Within an organization, you can find the AWS account ID inside an AWS account ARN. Example: arn:<partition>:organizations::<management-account-id>:account/<organization-id>/<account-id>
16251
+ """
16252
+ return pulumi.get(self, "account_id")
16253
+
16254
+ @account_id.setter
16255
+ def account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
16256
+ pulumi.set(self, "account_id", value)
16257
+
16258
+ @_builtins.property
16259
+ @pulumi.getter(name="allAssetInventoryAssets")
16260
+ def all_asset_inventory_assets(self) -> Optional[pulumi.Input[_builtins.bool]]:
16261
+ """
16262
+ All AWS assets stored in Asset Inventory that didn't match other AWS discovery configs.
16263
+ """
16264
+ return pulumi.get(self, "all_asset_inventory_assets")
16265
+
16266
+ @all_asset_inventory_assets.setter
16267
+ def all_asset_inventory_assets(self, value: Optional[pulumi.Input[_builtins.bool]]):
16268
+ pulumi.set(self, "all_asset_inventory_assets", value)
16269
+
16270
+
16146
16271
  if not MYPY:
16147
16272
  class PreventionDiscoveryConfigTargetArgsDict(TypedDict):
16148
16273
  big_query_target: NotRequired[pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetArgsDict']]
@@ -16160,6 +16285,11 @@ if not MYPY:
16160
16285
  Cloud Storage target for Discovery. The first target to match a bucket will be the one applied.
16161
16286
  Structure is documented below.
16162
16287
  """
16288
+ other_cloud_target: NotRequired[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetArgsDict']]
16289
+ """
16290
+ Other clouds target for discovery. The first target to match a resource will be the one applied.
16291
+ Structure is documented below.
16292
+ """
16163
16293
  secrets_target: NotRequired[pulumi.Input['PreventionDiscoveryConfigTargetSecretsTargetArgsDict']]
16164
16294
  """
16165
16295
  Discovery target that looks for credentials and secrets stored in cloud resource metadata and reports them as vulnerabilities to Security Command Center. Only one target of this type is allowed.
@@ -16173,6 +16303,7 @@ class PreventionDiscoveryConfigTargetArgs:
16173
16303
  big_query_target: Optional[pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetArgs']] = None,
16174
16304
  cloud_sql_target: Optional[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetArgs']] = None,
16175
16305
  cloud_storage_target: Optional[pulumi.Input['PreventionDiscoveryConfigTargetCloudStorageTargetArgs']] = None,
16306
+ other_cloud_target: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetArgs']] = None,
16176
16307
  secrets_target: Optional[pulumi.Input['PreventionDiscoveryConfigTargetSecretsTargetArgs']] = None):
16177
16308
  """
16178
16309
  :param pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetArgs'] big_query_target: BigQuery target for Discovery. The first target to match a table will be the one applied.
@@ -16181,6 +16312,8 @@ class PreventionDiscoveryConfigTargetArgs:
16181
16312
  Structure is documented below.
16182
16313
  :param pulumi.Input['PreventionDiscoveryConfigTargetCloudStorageTargetArgs'] cloud_storage_target: Cloud Storage target for Discovery. The first target to match a bucket will be the one applied.
16183
16314
  Structure is documented below.
16315
+ :param pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetArgs'] other_cloud_target: Other clouds target for discovery. The first target to match a resource will be the one applied.
16316
+ Structure is documented below.
16184
16317
  :param pulumi.Input['PreventionDiscoveryConfigTargetSecretsTargetArgs'] secrets_target: Discovery target that looks for credentials and secrets stored in cloud resource metadata and reports them as vulnerabilities to Security Command Center. Only one target of this type is allowed.
16185
16318
  """
16186
16319
  if big_query_target is not None:
@@ -16189,6 +16322,8 @@ class PreventionDiscoveryConfigTargetArgs:
16189
16322
  pulumi.set(__self__, "cloud_sql_target", cloud_sql_target)
16190
16323
  if cloud_storage_target is not None:
16191
16324
  pulumi.set(__self__, "cloud_storage_target", cloud_storage_target)
16325
+ if other_cloud_target is not None:
16326
+ pulumi.set(__self__, "other_cloud_target", other_cloud_target)
16192
16327
  if secrets_target is not None:
16193
16328
  pulumi.set(__self__, "secrets_target", secrets_target)
16194
16329
 
@@ -16231,6 +16366,19 @@ class PreventionDiscoveryConfigTargetArgs:
16231
16366
  def cloud_storage_target(self, value: Optional[pulumi.Input['PreventionDiscoveryConfigTargetCloudStorageTargetArgs']]):
16232
16367
  pulumi.set(self, "cloud_storage_target", value)
16233
16368
 
16369
+ @_builtins.property
16370
+ @pulumi.getter(name="otherCloudTarget")
16371
+ def other_cloud_target(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetArgs']]:
16372
+ """
16373
+ Other clouds target for discovery. The first target to match a resource will be the one applied.
16374
+ Structure is documented below.
16375
+ """
16376
+ return pulumi.get(self, "other_cloud_target")
16377
+
16378
+ @other_cloud_target.setter
16379
+ def other_cloud_target(self, value: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetArgs']]):
16380
+ pulumi.set(self, "other_cloud_target", value)
16381
+
16234
16382
  @_builtins.property
16235
16383
  @pulumi.getter(name="secretsTarget")
16236
16384
  def secrets_target(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigTargetSecretsTargetArgs']]:
@@ -16956,7 +17104,7 @@ if not MYPY:
16956
17104
  class PreventionDiscoveryConfigTargetBigQueryTargetFilterTablesIncludeRegexesArgsDict(TypedDict):
16957
17105
  patterns: NotRequired[pulumi.Input[Sequence[pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetFilterTablesIncludeRegexesPatternArgsDict']]]]
16958
17106
  """
16959
- The group of regular expression patterns to match against one or more file stores. Maximum of 100 entries. The sum of all lengths of regular expressions can't exceed 10 KiB.
17107
+ The group of regular expression patterns to match against one or more resources. Maximum of 100 entries. The sum of all lengths of regular expressions can't exceed 10 KiB.
16960
17108
  Structure is documented below.
16961
17109
  """
16962
17110
  elif False:
@@ -16967,7 +17115,7 @@ class PreventionDiscoveryConfigTargetBigQueryTargetFilterTablesIncludeRegexesArg
16967
17115
  def __init__(__self__, *,
16968
17116
  patterns: Optional[pulumi.Input[Sequence[pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetFilterTablesIncludeRegexesPatternArgs']]]] = None):
16969
17117
  """
16970
- :param pulumi.Input[Sequence[pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetFilterTablesIncludeRegexesPatternArgs']]] patterns: The group of regular expression patterns to match against one or more file stores. Maximum of 100 entries. The sum of all lengths of regular expressions can't exceed 10 KiB.
17118
+ :param pulumi.Input[Sequence[pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetFilterTablesIncludeRegexesPatternArgs']]] patterns: The group of regular expression patterns to match against one or more resources. Maximum of 100 entries. The sum of all lengths of regular expressions can't exceed 10 KiB.
16971
17119
  Structure is documented below.
16972
17120
  """
16973
17121
  if patterns is not None:
@@ -16977,7 +17125,7 @@ class PreventionDiscoveryConfigTargetBigQueryTargetFilterTablesIncludeRegexesArg
16977
17125
  @pulumi.getter
16978
17126
  def patterns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetFilterTablesIncludeRegexesPatternArgs']]]]:
16979
17127
  """
16980
- The group of regular expression patterns to match against one or more file stores. Maximum of 100 entries. The sum of all lengths of regular expressions can't exceed 10 KiB.
17128
+ The group of regular expression patterns to match against one or more resources. Maximum of 100 entries. The sum of all lengths of regular expressions can't exceed 10 KiB.
16981
17129
  Structure is documented below.
16982
17130
  """
16983
17131
  return pulumi.get(self, "patterns")
@@ -17233,7 +17381,7 @@ if not MYPY:
17233
17381
  class PreventionDiscoveryConfigTargetCloudSqlTargetFilterArgsDict(TypedDict):
17234
17382
  collection: NotRequired[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetFilterCollectionArgsDict']]
17235
17383
  """
17236
- A specific set of buckets for this filter to apply to.
17384
+ A collection of resources for this filter to apply to.
17237
17385
  Structure is documented below.
17238
17386
  """
17239
17387
  database_resource_reference: NotRequired[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetFilterDatabaseResourceReferenceArgsDict']]
@@ -17255,7 +17403,7 @@ class PreventionDiscoveryConfigTargetCloudSqlTargetFilterArgs:
17255
17403
  database_resource_reference: Optional[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetFilterDatabaseResourceReferenceArgs']] = None,
17256
17404
  others: Optional[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetFilterOthersArgs']] = None):
17257
17405
  """
17258
- :param pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetFilterCollectionArgs'] collection: A specific set of buckets for this filter to apply to.
17406
+ :param pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetFilterCollectionArgs'] collection: A collection of resources for this filter to apply to.
17259
17407
  Structure is documented below.
17260
17408
  :param pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetFilterDatabaseResourceReferenceArgs'] database_resource_reference: The database resource to scan. Targets including this can only include one target (the target with this database resource reference).
17261
17409
  Structure is documented below.
@@ -17272,7 +17420,7 @@ class PreventionDiscoveryConfigTargetCloudSqlTargetFilterArgs:
17272
17420
  @pulumi.getter
17273
17421
  def collection(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetFilterCollectionArgs']]:
17274
17422
  """
17275
- A specific set of buckets for this filter to apply to.
17423
+ A collection of resources for this filter to apply to.
17276
17424
  Structure is documented below.
17277
17425
  """
17278
17426
  return pulumi.get(self, "collection")
@@ -17311,7 +17459,7 @@ if not MYPY:
17311
17459
  class PreventionDiscoveryConfigTargetCloudSqlTargetFilterCollectionArgsDict(TypedDict):
17312
17460
  include_regexes: NotRequired[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetFilterCollectionIncludeRegexesArgsDict']]
17313
17461
  """
17314
- A collection of regular expressions to match a file store against.
17462
+ A collection of regular expressions to match a resource against.
17315
17463
  Structure is documented below.
17316
17464
  """
17317
17465
  elif False:
@@ -17322,7 +17470,7 @@ class PreventionDiscoveryConfigTargetCloudSqlTargetFilterCollectionArgs:
17322
17470
  def __init__(__self__, *,
17323
17471
  include_regexes: Optional[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetFilterCollectionIncludeRegexesArgs']] = None):
17324
17472
  """
17325
- :param pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetFilterCollectionIncludeRegexesArgs'] include_regexes: A collection of regular expressions to match a file store against.
17473
+ :param pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetFilterCollectionIncludeRegexesArgs'] include_regexes: A collection of regular expressions to match a resource against.
17326
17474
  Structure is documented below.
17327
17475
  """
17328
17476
  if include_regexes is not None:
@@ -17332,7 +17480,7 @@ class PreventionDiscoveryConfigTargetCloudSqlTargetFilterCollectionArgs:
17332
17480
  @pulumi.getter(name="includeRegexes")
17333
17481
  def include_regexes(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetFilterCollectionIncludeRegexesArgs']]:
17334
17482
  """
17335
- A collection of regular expressions to match a file store against.
17483
+ A collection of regular expressions to match a resource against.
17336
17484
  Structure is documented below.
17337
17485
  """
17338
17486
  return pulumi.get(self, "include_regexes")
@@ -17346,7 +17494,7 @@ if not MYPY:
17346
17494
  class PreventionDiscoveryConfigTargetCloudSqlTargetFilterCollectionIncludeRegexesArgsDict(TypedDict):
17347
17495
  patterns: NotRequired[pulumi.Input[Sequence[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetFilterCollectionIncludeRegexesPatternArgsDict']]]]
17348
17496
  """
17349
- The group of regular expression patterns to match against one or more file stores. Maximum of 100 entries. The sum of all lengths of regular expressions can't exceed 10 KiB.
17497
+ The group of regular expression patterns to match against one or more resources. Maximum of 100 entries. The sum of all lengths of regular expressions can't exceed 10 KiB.
17350
17498
  Structure is documented below.
17351
17499
  """
17352
17500
  elif False:
@@ -17357,7 +17505,7 @@ class PreventionDiscoveryConfigTargetCloudSqlTargetFilterCollectionIncludeRegexe
17357
17505
  def __init__(__self__, *,
17358
17506
  patterns: Optional[pulumi.Input[Sequence[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetFilterCollectionIncludeRegexesPatternArgs']]]] = None):
17359
17507
  """
17360
- :param pulumi.Input[Sequence[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetFilterCollectionIncludeRegexesPatternArgs']]] patterns: The group of regular expression patterns to match against one or more file stores. Maximum of 100 entries. The sum of all lengths of regular expressions can't exceed 10 KiB.
17508
+ :param pulumi.Input[Sequence[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetFilterCollectionIncludeRegexesPatternArgs']]] patterns: The group of regular expression patterns to match against one or more resources. Maximum of 100 entries. The sum of all lengths of regular expressions can't exceed 10 KiB.
17361
17509
  Structure is documented below.
17362
17510
  """
17363
17511
  if patterns is not None:
@@ -17367,7 +17515,7 @@ class PreventionDiscoveryConfigTargetCloudSqlTargetFilterCollectionIncludeRegexe
17367
17515
  @pulumi.getter
17368
17516
  def patterns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetFilterCollectionIncludeRegexesPatternArgs']]]]:
17369
17517
  """
17370
- The group of regular expression patterns to match against one or more file stores. Maximum of 100 entries. The sum of all lengths of regular expressions can't exceed 10 KiB.
17518
+ The group of regular expression patterns to match against one or more resources. Maximum of 100 entries. The sum of all lengths of regular expressions can't exceed 10 KiB.
17371
17519
  Structure is documented below.
17372
17520
  """
17373
17521
  return pulumi.get(self, "patterns")
@@ -17578,7 +17726,7 @@ if not MYPY:
17578
17726
  """
17579
17727
  refresh_frequency: NotRequired[pulumi.Input[_builtins.str]]
17580
17728
  """
17581
- 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.
17729
+ Frequency to update profiles regardless of whether the underlying resource has changes. Defaults to never.
17582
17730
  Possible values are: `UPDATE_FREQUENCY_NEVER`, `UPDATE_FREQUENCY_DAILY`, `UPDATE_FREQUENCY_MONTHLY`.
17583
17731
  """
17584
17732
  schema_modified_cadence: NotRequired[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceSchemaModifiedCadenceArgsDict']]
@@ -17598,7 +17746,7 @@ class PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceArgs:
17598
17746
  """
17599
17747
  :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.
17600
17748
  Structure is documented below.
17601
- :param pulumi.Input[_builtins.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.
17749
+ :param pulumi.Input[_builtins.str] refresh_frequency: Frequency to update profiles regardless of whether the underlying resource has changes. Defaults to never.
17602
17750
  Possible values are: `UPDATE_FREQUENCY_NEVER`, `UPDATE_FREQUENCY_DAILY`, `UPDATE_FREQUENCY_MONTHLY`.
17603
17751
  :param pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceSchemaModifiedCadenceArgs'] schema_modified_cadence: Governs when to update data profiles when a schema is modified
17604
17752
  Structure is documented below.
@@ -17627,7 +17775,7 @@ class PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceArgs:
17627
17775
  @pulumi.getter(name="refreshFrequency")
17628
17776
  def refresh_frequency(self) -> Optional[pulumi.Input[_builtins.str]]:
17629
17777
  """
17630
- 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.
17778
+ Frequency to update profiles regardless of whether the underlying resource has changes. Defaults to never.
17631
17779
  Possible values are: `UPDATE_FREQUENCY_NEVER`, `UPDATE_FREQUENCY_DAILY`, `UPDATE_FREQUENCY_MONTHLY`.
17632
17780
  """
17633
17781
  return pulumi.get(self, "refresh_frequency")
@@ -17855,7 +18003,7 @@ if not MYPY:
17855
18003
  """
17856
18004
  min_age: NotRequired[pulumi.Input[_builtins.str]]
17857
18005
  """
17858
- Duration format. Minimum age a file store must have. If set, the value must be 1 hour or greater.
18006
+ Duration format. Minimum age a resource must be before a profile can be generated. Value must be 1 hour or greater. Minimum age is not supported for Azure Blob Storage containers.
17859
18007
  """
17860
18008
  elif False:
17861
18009
  PreventionDiscoveryConfigTargetCloudStorageTargetConditionsArgsDict: TypeAlias = Mapping[str, Any]
@@ -17870,7 +18018,7 @@ class PreventionDiscoveryConfigTargetCloudStorageTargetConditionsArgs:
17870
18018
  :param pulumi.Input['PreventionDiscoveryConfigTargetCloudStorageTargetConditionsCloudStorageConditionsArgs'] cloud_storage_conditions: Cloud Storage conditions.
17871
18019
  Structure is documented below.
17872
18020
  :param pulumi.Input[_builtins.str] created_after: File store must have been created after this date. Used to avoid backfilling. A timestamp in RFC3339 UTC "Zulu" format with nanosecond resolution and upto nine fractional digits.
17873
- :param pulumi.Input[_builtins.str] min_age: Duration format. Minimum age a file store must have. If set, the value must be 1 hour or greater.
18021
+ :param pulumi.Input[_builtins.str] min_age: Duration format. Minimum age a resource must be before a profile can be generated. Value must be 1 hour or greater. Minimum age is not supported for Azure Blob Storage containers.
17874
18022
  """
17875
18023
  if cloud_storage_conditions is not None:
17876
18024
  pulumi.set(__self__, "cloud_storage_conditions", cloud_storage_conditions)
@@ -17908,7 +18056,7 @@ class PreventionDiscoveryConfigTargetCloudStorageTargetConditionsArgs:
17908
18056
  @pulumi.getter(name="minAge")
17909
18057
  def min_age(self) -> Optional[pulumi.Input[_builtins.str]]:
17910
18058
  """
17911
- Duration format. Minimum age a file store must have. If set, the value must be 1 hour or greater.
18059
+ Duration format. Minimum age a resource must be before a profile can be generated. Value must be 1 hour or greater. Minimum age is not supported for Azure Blob Storage containers.
17912
18060
  """
17913
18061
  return pulumi.get(self, "min_age")
17914
18062
 
@@ -17996,7 +18144,7 @@ if not MYPY:
17996
18144
  """
17997
18145
  collection: NotRequired[pulumi.Input['PreventionDiscoveryConfigTargetCloudStorageTargetFilterCollectionArgsDict']]
17998
18146
  """
17999
- A specific set of buckets for this filter to apply to.
18147
+ A collection of resources for this filter to apply to.
18000
18148
  Structure is documented below.
18001
18149
  """
18002
18150
  others: NotRequired[pulumi.Input['PreventionDiscoveryConfigTargetCloudStorageTargetFilterOthersArgsDict']]
@@ -18015,7 +18163,7 @@ class PreventionDiscoveryConfigTargetCloudStorageTargetFilterArgs:
18015
18163
  """
18016
18164
  :param pulumi.Input['PreventionDiscoveryConfigTargetCloudStorageTargetFilterCloudStorageResourceReferenceArgs'] cloud_storage_resource_reference: The bucket to scan. Targets including this can only include one target (the target with this bucket). This enables profiling the contents of a single bucket, while the other options allow for easy profiling of many buckets within a project or an organization.
18017
18165
  Structure is documented below.
18018
- :param pulumi.Input['PreventionDiscoveryConfigTargetCloudStorageTargetFilterCollectionArgs'] collection: A specific set of buckets for this filter to apply to.
18166
+ :param pulumi.Input['PreventionDiscoveryConfigTargetCloudStorageTargetFilterCollectionArgs'] collection: A collection of resources for this filter to apply to.
18019
18167
  Structure is documented below.
18020
18168
  :param pulumi.Input['PreventionDiscoveryConfigTargetCloudStorageTargetFilterOthersArgs'] others: Match discovery resources not covered by any other filter.
18021
18169
  """
@@ -18043,7 +18191,7 @@ class PreventionDiscoveryConfigTargetCloudStorageTargetFilterArgs:
18043
18191
  @pulumi.getter
18044
18192
  def collection(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigTargetCloudStorageTargetFilterCollectionArgs']]:
18045
18193
  """
18046
- A specific set of buckets for this filter to apply to.
18194
+ A collection of resources for this filter to apply to.
18047
18195
  Structure is documented below.
18048
18196
  """
18049
18197
  return pulumi.get(self, "collection")
@@ -18121,7 +18269,7 @@ if not MYPY:
18121
18269
  class PreventionDiscoveryConfigTargetCloudStorageTargetFilterCollectionArgsDict(TypedDict):
18122
18270
  include_regexes: NotRequired[pulumi.Input['PreventionDiscoveryConfigTargetCloudStorageTargetFilterCollectionIncludeRegexesArgsDict']]
18123
18271
  """
18124
- A collection of regular expressions to match a file store against.
18272
+ A collection of regular expressions to match a resource against.
18125
18273
  Structure is documented below.
18126
18274
  """
18127
18275
  elif False:
@@ -18132,7 +18280,7 @@ class PreventionDiscoveryConfigTargetCloudStorageTargetFilterCollectionArgs:
18132
18280
  def __init__(__self__, *,
18133
18281
  include_regexes: Optional[pulumi.Input['PreventionDiscoveryConfigTargetCloudStorageTargetFilterCollectionIncludeRegexesArgs']] = None):
18134
18282
  """
18135
- :param pulumi.Input['PreventionDiscoveryConfigTargetCloudStorageTargetFilterCollectionIncludeRegexesArgs'] include_regexes: A collection of regular expressions to match a file store against.
18283
+ :param pulumi.Input['PreventionDiscoveryConfigTargetCloudStorageTargetFilterCollectionIncludeRegexesArgs'] include_regexes: A collection of regular expressions to match a resource against.
18136
18284
  Structure is documented below.
18137
18285
  """
18138
18286
  if include_regexes is not None:
@@ -18142,7 +18290,7 @@ class PreventionDiscoveryConfigTargetCloudStorageTargetFilterCollectionArgs:
18142
18290
  @pulumi.getter(name="includeRegexes")
18143
18291
  def include_regexes(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigTargetCloudStorageTargetFilterCollectionIncludeRegexesArgs']]:
18144
18292
  """
18145
- A collection of regular expressions to match a file store against.
18293
+ A collection of regular expressions to match a resource against.
18146
18294
  Structure is documented below.
18147
18295
  """
18148
18296
  return pulumi.get(self, "include_regexes")
@@ -18156,7 +18304,7 @@ if not MYPY:
18156
18304
  class PreventionDiscoveryConfigTargetCloudStorageTargetFilterCollectionIncludeRegexesArgsDict(TypedDict):
18157
18305
  patterns: NotRequired[pulumi.Input[Sequence[pulumi.Input['PreventionDiscoveryConfigTargetCloudStorageTargetFilterCollectionIncludeRegexesPatternArgsDict']]]]
18158
18306
  """
18159
- The group of regular expression patterns to match against one or more file stores. Maximum of 100 entries. The sum of all lengths of regular expressions can't exceed 10 KiB.
18307
+ The group of regular expression patterns to match against one or more resources. Maximum of 100 entries. The sum of all lengths of regular expressions can't exceed 10 KiB.
18160
18308
  Structure is documented below.
18161
18309
  """
18162
18310
  elif False:
@@ -18167,7 +18315,7 @@ class PreventionDiscoveryConfigTargetCloudStorageTargetFilterCollectionIncludeRe
18167
18315
  def __init__(__self__, *,
18168
18316
  patterns: Optional[pulumi.Input[Sequence[pulumi.Input['PreventionDiscoveryConfigTargetCloudStorageTargetFilterCollectionIncludeRegexesPatternArgs']]]] = None):
18169
18317
  """
18170
- :param pulumi.Input[Sequence[pulumi.Input['PreventionDiscoveryConfigTargetCloudStorageTargetFilterCollectionIncludeRegexesPatternArgs']]] patterns: The group of regular expression patterns to match against one or more file stores. Maximum of 100 entries. The sum of all lengths of regular expressions can't exceed 10 KiB.
18318
+ :param pulumi.Input[Sequence[pulumi.Input['PreventionDiscoveryConfigTargetCloudStorageTargetFilterCollectionIncludeRegexesPatternArgs']]] patterns: The group of regular expression patterns to match against one or more resources. Maximum of 100 entries. The sum of all lengths of regular expressions can't exceed 10 KiB.
18171
18319
  Structure is documented below.
18172
18320
  """
18173
18321
  if patterns is not None:
@@ -18177,7 +18325,7 @@ class PreventionDiscoveryConfigTargetCloudStorageTargetFilterCollectionIncludeRe
18177
18325
  @pulumi.getter
18178
18326
  def patterns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['PreventionDiscoveryConfigTargetCloudStorageTargetFilterCollectionIncludeRegexesPatternArgs']]]]:
18179
18327
  """
18180
- The group of regular expression patterns to match against one or more file stores. Maximum of 100 entries. The sum of all lengths of regular expressions can't exceed 10 KiB.
18328
+ The group of regular expression patterns to match against one or more resources. Maximum of 100 entries. The sum of all lengths of regular expressions can't exceed 10 KiB.
18181
18329
  Structure is documented below.
18182
18330
  """
18183
18331
  return pulumi.get(self, "patterns")
@@ -18295,7 +18443,7 @@ if not MYPY:
18295
18443
  """
18296
18444
  refresh_frequency: NotRequired[pulumi.Input[_builtins.str]]
18297
18445
  """
18298
- 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.
18446
+ Frequency to update profiles regardless of whether the underlying resource has changes. Defaults to never.
18299
18447
  Possible values are: `UPDATE_FREQUENCY_NEVER`, `UPDATE_FREQUENCY_DAILY`, `UPDATE_FREQUENCY_MONTHLY`.
18300
18448
  """
18301
18449
  elif False:
@@ -18309,7 +18457,7 @@ class PreventionDiscoveryConfigTargetCloudStorageTargetGenerationCadenceArgs:
18309
18457
  """
18310
18458
  :param pulumi.Input['PreventionDiscoveryConfigTargetCloudStorageTargetGenerationCadenceInspectTemplateModifiedCadenceArgs'] 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.
18311
18459
  Structure is documented below.
18312
- :param pulumi.Input[_builtins.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.
18460
+ :param pulumi.Input[_builtins.str] refresh_frequency: Frequency to update profiles regardless of whether the underlying resource has changes. Defaults to never.
18313
18461
  Possible values are: `UPDATE_FREQUENCY_NEVER`, `UPDATE_FREQUENCY_DAILY`, `UPDATE_FREQUENCY_MONTHLY`.
18314
18462
  """
18315
18463
  if inspect_template_modified_cadence is not None:
@@ -18334,7 +18482,7 @@ class PreventionDiscoveryConfigTargetCloudStorageTargetGenerationCadenceArgs:
18334
18482
  @pulumi.getter(name="refreshFrequency")
18335
18483
  def refresh_frequency(self) -> Optional[pulumi.Input[_builtins.str]]:
18336
18484
  """
18337
- 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.
18485
+ Frequency to update profiles regardless of whether the underlying resource has changes. Defaults to never.
18338
18486
  Possible values are: `UPDATE_FREQUENCY_NEVER`, `UPDATE_FREQUENCY_DAILY`, `UPDATE_FREQUENCY_MONTHLY`.
18339
18487
  """
18340
18488
  return pulumi.get(self, "refresh_frequency")
@@ -18379,6 +18527,798 @@ class PreventionDiscoveryConfigTargetCloudStorageTargetGenerationCadenceInspectT
18379
18527
  pulumi.set(self, "frequency", value)
18380
18528
 
18381
18529
 
18530
+ if not MYPY:
18531
+ class PreventionDiscoveryConfigTargetOtherCloudTargetArgsDict(TypedDict):
18532
+ filter: pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterArgsDict']
18533
+ """
18534
+ Required. The resources that the discovery cadence applies to. The first target with a matching filter will be the one to apply to a resource.
18535
+ Structure is documented below.
18536
+ """
18537
+ conditions: NotRequired[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetConditionsArgsDict']]
18538
+ """
18539
+ In addition to matching the filter, these conditions must be true before a profile is generated.
18540
+ Structure is documented below.
18541
+ """
18542
+ data_source_type: NotRequired[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetDataSourceTypeArgsDict']]
18543
+ """
18544
+ Required. The type of data profiles generated by this discovery target. Supported values are: aws/s3/bucket
18545
+ Structure is documented below.
18546
+ """
18547
+ disabled: NotRequired[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetDisabledArgsDict']]
18548
+ """
18549
+ Disable profiling for resources that match this filter.
18550
+ """
18551
+ generation_cadence: NotRequired[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetGenerationCadenceArgsDict']]
18552
+ """
18553
+ How often and when to update profiles. New resources that match both the filter and conditions are scanned as quickly as possible depending on system capacity.
18554
+ Structure is documented below.
18555
+ """
18556
+ elif False:
18557
+ PreventionDiscoveryConfigTargetOtherCloudTargetArgsDict: TypeAlias = Mapping[str, Any]
18558
+
18559
+ @pulumi.input_type
18560
+ class PreventionDiscoveryConfigTargetOtherCloudTargetArgs:
18561
+ def __init__(__self__, *,
18562
+ filter: pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterArgs'],
18563
+ conditions: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetConditionsArgs']] = None,
18564
+ data_source_type: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetDataSourceTypeArgs']] = None,
18565
+ disabled: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetDisabledArgs']] = None,
18566
+ generation_cadence: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetGenerationCadenceArgs']] = None):
18567
+ """
18568
+ :param pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterArgs'] filter: Required. The resources that the discovery cadence applies to. The first target with a matching filter will be the one to apply to a resource.
18569
+ Structure is documented below.
18570
+ :param pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetConditionsArgs'] conditions: In addition to matching the filter, these conditions must be true before a profile is generated.
18571
+ Structure is documented below.
18572
+ :param pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetDataSourceTypeArgs'] data_source_type: Required. The type of data profiles generated by this discovery target. Supported values are: aws/s3/bucket
18573
+ Structure is documented below.
18574
+ :param pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetDisabledArgs'] disabled: Disable profiling for resources that match this filter.
18575
+ :param pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetGenerationCadenceArgs'] generation_cadence: How often and when to update profiles. New resources that match both the filter and conditions are scanned as quickly as possible depending on system capacity.
18576
+ Structure is documented below.
18577
+ """
18578
+ pulumi.set(__self__, "filter", filter)
18579
+ if conditions is not None:
18580
+ pulumi.set(__self__, "conditions", conditions)
18581
+ if data_source_type is not None:
18582
+ pulumi.set(__self__, "data_source_type", data_source_type)
18583
+ if disabled is not None:
18584
+ pulumi.set(__self__, "disabled", disabled)
18585
+ if generation_cadence is not None:
18586
+ pulumi.set(__self__, "generation_cadence", generation_cadence)
18587
+
18588
+ @_builtins.property
18589
+ @pulumi.getter
18590
+ def filter(self) -> pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterArgs']:
18591
+ """
18592
+ Required. The resources that the discovery cadence applies to. The first target with a matching filter will be the one to apply to a resource.
18593
+ Structure is documented below.
18594
+ """
18595
+ return pulumi.get(self, "filter")
18596
+
18597
+ @filter.setter
18598
+ def filter(self, value: pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterArgs']):
18599
+ pulumi.set(self, "filter", value)
18600
+
18601
+ @_builtins.property
18602
+ @pulumi.getter
18603
+ def conditions(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetConditionsArgs']]:
18604
+ """
18605
+ In addition to matching the filter, these conditions must be true before a profile is generated.
18606
+ Structure is documented below.
18607
+ """
18608
+ return pulumi.get(self, "conditions")
18609
+
18610
+ @conditions.setter
18611
+ def conditions(self, value: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetConditionsArgs']]):
18612
+ pulumi.set(self, "conditions", value)
18613
+
18614
+ @_builtins.property
18615
+ @pulumi.getter(name="dataSourceType")
18616
+ def data_source_type(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetDataSourceTypeArgs']]:
18617
+ """
18618
+ Required. The type of data profiles generated by this discovery target. Supported values are: aws/s3/bucket
18619
+ Structure is documented below.
18620
+ """
18621
+ return pulumi.get(self, "data_source_type")
18622
+
18623
+ @data_source_type.setter
18624
+ def data_source_type(self, value: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetDataSourceTypeArgs']]):
18625
+ pulumi.set(self, "data_source_type", value)
18626
+
18627
+ @_builtins.property
18628
+ @pulumi.getter
18629
+ def disabled(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetDisabledArgs']]:
18630
+ """
18631
+ Disable profiling for resources that match this filter.
18632
+ """
18633
+ return pulumi.get(self, "disabled")
18634
+
18635
+ @disabled.setter
18636
+ def disabled(self, value: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetDisabledArgs']]):
18637
+ pulumi.set(self, "disabled", value)
18638
+
18639
+ @_builtins.property
18640
+ @pulumi.getter(name="generationCadence")
18641
+ def generation_cadence(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetGenerationCadenceArgs']]:
18642
+ """
18643
+ How often and when to update profiles. New resources that match both the filter and conditions are scanned as quickly as possible depending on system capacity.
18644
+ Structure is documented below.
18645
+ """
18646
+ return pulumi.get(self, "generation_cadence")
18647
+
18648
+ @generation_cadence.setter
18649
+ def generation_cadence(self, value: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetGenerationCadenceArgs']]):
18650
+ pulumi.set(self, "generation_cadence", value)
18651
+
18652
+
18653
+ if not MYPY:
18654
+ class PreventionDiscoveryConfigTargetOtherCloudTargetConditionsArgsDict(TypedDict):
18655
+ amazon_s3_bucket_conditions: NotRequired[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetConditionsAmazonS3BucketConditionsArgsDict']]
18656
+ """
18657
+ Amazon S3 bucket conditions.
18658
+ Structure is documented below.
18659
+
18660
+
18661
+ <a name="nested_targets_targets_other_cloud_target_conditions_amazon_s3_bucket_conditions"></a>The `amazon_s3_bucket_conditions` block supports:
18662
+ """
18663
+ min_age: NotRequired[pulumi.Input[_builtins.str]]
18664
+ """
18665
+ Duration format. Minimum age a resource must be before a profile can be generated. Value must be 1 hour or greater. Minimum age is not supported for Azure Blob Storage containers.
18666
+ """
18667
+ elif False:
18668
+ PreventionDiscoveryConfigTargetOtherCloudTargetConditionsArgsDict: TypeAlias = Mapping[str, Any]
18669
+
18670
+ @pulumi.input_type
18671
+ class PreventionDiscoveryConfigTargetOtherCloudTargetConditionsArgs:
18672
+ def __init__(__self__, *,
18673
+ amazon_s3_bucket_conditions: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetConditionsAmazonS3BucketConditionsArgs']] = None,
18674
+ min_age: Optional[pulumi.Input[_builtins.str]] = None):
18675
+ """
18676
+ :param pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetConditionsAmazonS3BucketConditionsArgs'] amazon_s3_bucket_conditions: Amazon S3 bucket conditions.
18677
+ Structure is documented below.
18678
+
18679
+
18680
+ <a name="nested_targets_targets_other_cloud_target_conditions_amazon_s3_bucket_conditions"></a>The `amazon_s3_bucket_conditions` block supports:
18681
+ :param pulumi.Input[_builtins.str] min_age: Duration format. Minimum age a resource must be before a profile can be generated. Value must be 1 hour or greater. Minimum age is not supported for Azure Blob Storage containers.
18682
+ """
18683
+ if amazon_s3_bucket_conditions is not None:
18684
+ pulumi.set(__self__, "amazon_s3_bucket_conditions", amazon_s3_bucket_conditions)
18685
+ if min_age is not None:
18686
+ pulumi.set(__self__, "min_age", min_age)
18687
+
18688
+ @_builtins.property
18689
+ @pulumi.getter(name="amazonS3BucketConditions")
18690
+ def amazon_s3_bucket_conditions(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetConditionsAmazonS3BucketConditionsArgs']]:
18691
+ """
18692
+ Amazon S3 bucket conditions.
18693
+ Structure is documented below.
18694
+
18695
+
18696
+ <a name="nested_targets_targets_other_cloud_target_conditions_amazon_s3_bucket_conditions"></a>The `amazon_s3_bucket_conditions` block supports:
18697
+ """
18698
+ return pulumi.get(self, "amazon_s3_bucket_conditions")
18699
+
18700
+ @amazon_s3_bucket_conditions.setter
18701
+ def amazon_s3_bucket_conditions(self, value: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetConditionsAmazonS3BucketConditionsArgs']]):
18702
+ pulumi.set(self, "amazon_s3_bucket_conditions", value)
18703
+
18704
+ @_builtins.property
18705
+ @pulumi.getter(name="minAge")
18706
+ def min_age(self) -> Optional[pulumi.Input[_builtins.str]]:
18707
+ """
18708
+ Duration format. Minimum age a resource must be before a profile can be generated. Value must be 1 hour or greater. Minimum age is not supported for Azure Blob Storage containers.
18709
+ """
18710
+ return pulumi.get(self, "min_age")
18711
+
18712
+ @min_age.setter
18713
+ def min_age(self, value: Optional[pulumi.Input[_builtins.str]]):
18714
+ pulumi.set(self, "min_age", value)
18715
+
18716
+
18717
+ if not MYPY:
18718
+ class PreventionDiscoveryConfigTargetOtherCloudTargetConditionsAmazonS3BucketConditionsArgsDict(TypedDict):
18719
+ bucket_types: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
18720
+ """
18721
+ Bucket types that should be profiled. Optional. Defaults to TYPE_ALL_SUPPORTED if unspecified. Possible values: ["TYPE_ALL_SUPPORTED", "TYPE_GENERAL_PURPOSE"]
18722
+ """
18723
+ object_storage_classes: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
18724
+ """
18725
+ Object classes that should be profiled. Optional. Defaults to ALL_SUPPORTED_CLASSES if unspecified. Possible values: ["ALL_SUPPORTED_CLASSES", "STANDARD", "STANDARD_INFREQUENT_ACCESS", "GLACIER_INSTANT_RETRIEVAL", "INTELLIGENT_TIERING"]
18726
+ """
18727
+ elif False:
18728
+ PreventionDiscoveryConfigTargetOtherCloudTargetConditionsAmazonS3BucketConditionsArgsDict: TypeAlias = Mapping[str, Any]
18729
+
18730
+ @pulumi.input_type
18731
+ class PreventionDiscoveryConfigTargetOtherCloudTargetConditionsAmazonS3BucketConditionsArgs:
18732
+ def __init__(__self__, *,
18733
+ bucket_types: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
18734
+ object_storage_classes: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
18735
+ """
18736
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] bucket_types: Bucket types that should be profiled. Optional. Defaults to TYPE_ALL_SUPPORTED if unspecified. Possible values: ["TYPE_ALL_SUPPORTED", "TYPE_GENERAL_PURPOSE"]
18737
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] object_storage_classes: Object classes that should be profiled. Optional. Defaults to ALL_SUPPORTED_CLASSES if unspecified. Possible values: ["ALL_SUPPORTED_CLASSES", "STANDARD", "STANDARD_INFREQUENT_ACCESS", "GLACIER_INSTANT_RETRIEVAL", "INTELLIGENT_TIERING"]
18738
+ """
18739
+ if bucket_types is not None:
18740
+ pulumi.set(__self__, "bucket_types", bucket_types)
18741
+ if object_storage_classes is not None:
18742
+ pulumi.set(__self__, "object_storage_classes", object_storage_classes)
18743
+
18744
+ @_builtins.property
18745
+ @pulumi.getter(name="bucketTypes")
18746
+ def bucket_types(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
18747
+ """
18748
+ Bucket types that should be profiled. Optional. Defaults to TYPE_ALL_SUPPORTED if unspecified. Possible values: ["TYPE_ALL_SUPPORTED", "TYPE_GENERAL_PURPOSE"]
18749
+ """
18750
+ return pulumi.get(self, "bucket_types")
18751
+
18752
+ @bucket_types.setter
18753
+ def bucket_types(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
18754
+ pulumi.set(self, "bucket_types", value)
18755
+
18756
+ @_builtins.property
18757
+ @pulumi.getter(name="objectStorageClasses")
18758
+ def object_storage_classes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
18759
+ """
18760
+ Object classes that should be profiled. Optional. Defaults to ALL_SUPPORTED_CLASSES if unspecified. Possible values: ["ALL_SUPPORTED_CLASSES", "STANDARD", "STANDARD_INFREQUENT_ACCESS", "GLACIER_INSTANT_RETRIEVAL", "INTELLIGENT_TIERING"]
18761
+ """
18762
+ return pulumi.get(self, "object_storage_classes")
18763
+
18764
+ @object_storage_classes.setter
18765
+ def object_storage_classes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
18766
+ pulumi.set(self, "object_storage_classes", value)
18767
+
18768
+
18769
+ if not MYPY:
18770
+ class PreventionDiscoveryConfigTargetOtherCloudTargetDataSourceTypeArgsDict(TypedDict):
18771
+ data_source: NotRequired[pulumi.Input[_builtins.str]]
18772
+ """
18773
+ (Optional)
18774
+ """
18775
+ elif False:
18776
+ PreventionDiscoveryConfigTargetOtherCloudTargetDataSourceTypeArgsDict: TypeAlias = Mapping[str, Any]
18777
+
18778
+ @pulumi.input_type
18779
+ class PreventionDiscoveryConfigTargetOtherCloudTargetDataSourceTypeArgs:
18780
+ def __init__(__self__, *,
18781
+ data_source: Optional[pulumi.Input[_builtins.str]] = None):
18782
+ """
18783
+ :param pulumi.Input[_builtins.str] data_source: (Optional)
18784
+ """
18785
+ if data_source is not None:
18786
+ pulumi.set(__self__, "data_source", data_source)
18787
+
18788
+ @_builtins.property
18789
+ @pulumi.getter(name="dataSource")
18790
+ def data_source(self) -> Optional[pulumi.Input[_builtins.str]]:
18791
+ """
18792
+ (Optional)
18793
+ """
18794
+ return pulumi.get(self, "data_source")
18795
+
18796
+ @data_source.setter
18797
+ def data_source(self, value: Optional[pulumi.Input[_builtins.str]]):
18798
+ pulumi.set(self, "data_source", value)
18799
+
18800
+
18801
+ if not MYPY:
18802
+ class PreventionDiscoveryConfigTargetOtherCloudTargetDisabledArgsDict(TypedDict):
18803
+ pass
18804
+ elif False:
18805
+ PreventionDiscoveryConfigTargetOtherCloudTargetDisabledArgsDict: TypeAlias = Mapping[str, Any]
18806
+
18807
+ @pulumi.input_type
18808
+ class PreventionDiscoveryConfigTargetOtherCloudTargetDisabledArgs:
18809
+ def __init__(__self__):
18810
+ pass
18811
+
18812
+
18813
+ if not MYPY:
18814
+ class PreventionDiscoveryConfigTargetOtherCloudTargetFilterArgsDict(TypedDict):
18815
+ collection: NotRequired[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionArgsDict']]
18816
+ """
18817
+ A collection of resources for this filter to apply to.
18818
+ Structure is documented below.
18819
+ """
18820
+ others: NotRequired[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterOthersArgsDict']]
18821
+ """
18822
+ Match discovery resources not covered by any other filter.
18823
+ """
18824
+ single_resource: NotRequired[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceArgsDict']]
18825
+ """
18826
+ The resource to scan. Configs using this filter can only have one target (the target with this single resource reference).
18827
+ Structure is documented below.
18828
+ """
18829
+ elif False:
18830
+ PreventionDiscoveryConfigTargetOtherCloudTargetFilterArgsDict: TypeAlias = Mapping[str, Any]
18831
+
18832
+ @pulumi.input_type
18833
+ class PreventionDiscoveryConfigTargetOtherCloudTargetFilterArgs:
18834
+ def __init__(__self__, *,
18835
+ collection: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionArgs']] = None,
18836
+ others: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterOthersArgs']] = None,
18837
+ single_resource: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceArgs']] = None):
18838
+ """
18839
+ :param pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionArgs'] collection: A collection of resources for this filter to apply to.
18840
+ Structure is documented below.
18841
+ :param pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterOthersArgs'] others: Match discovery resources not covered by any other filter.
18842
+ :param pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceArgs'] single_resource: The resource to scan. Configs using this filter can only have one target (the target with this single resource reference).
18843
+ Structure is documented below.
18844
+ """
18845
+ if collection is not None:
18846
+ pulumi.set(__self__, "collection", collection)
18847
+ if others is not None:
18848
+ pulumi.set(__self__, "others", others)
18849
+ if single_resource is not None:
18850
+ pulumi.set(__self__, "single_resource", single_resource)
18851
+
18852
+ @_builtins.property
18853
+ @pulumi.getter
18854
+ def collection(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionArgs']]:
18855
+ """
18856
+ A collection of resources for this filter to apply to.
18857
+ Structure is documented below.
18858
+ """
18859
+ return pulumi.get(self, "collection")
18860
+
18861
+ @collection.setter
18862
+ def collection(self, value: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionArgs']]):
18863
+ pulumi.set(self, "collection", value)
18864
+
18865
+ @_builtins.property
18866
+ @pulumi.getter
18867
+ def others(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterOthersArgs']]:
18868
+ """
18869
+ Match discovery resources not covered by any other filter.
18870
+ """
18871
+ return pulumi.get(self, "others")
18872
+
18873
+ @others.setter
18874
+ def others(self, value: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterOthersArgs']]):
18875
+ pulumi.set(self, "others", value)
18876
+
18877
+ @_builtins.property
18878
+ @pulumi.getter(name="singleResource")
18879
+ def single_resource(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceArgs']]:
18880
+ """
18881
+ The resource to scan. Configs using this filter can only have one target (the target with this single resource reference).
18882
+ Structure is documented below.
18883
+ """
18884
+ return pulumi.get(self, "single_resource")
18885
+
18886
+ @single_resource.setter
18887
+ def single_resource(self, value: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceArgs']]):
18888
+ pulumi.set(self, "single_resource", value)
18889
+
18890
+
18891
+ if not MYPY:
18892
+ class PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionArgsDict(TypedDict):
18893
+ include_regexes: NotRequired[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesArgsDict']]
18894
+ """
18895
+ A collection of regular expressions to match a resource against.
18896
+ Structure is documented below.
18897
+ """
18898
+ elif False:
18899
+ PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionArgsDict: TypeAlias = Mapping[str, Any]
18900
+
18901
+ @pulumi.input_type
18902
+ class PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionArgs:
18903
+ def __init__(__self__, *,
18904
+ include_regexes: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesArgs']] = None):
18905
+ """
18906
+ :param pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesArgs'] include_regexes: A collection of regular expressions to match a resource against.
18907
+ Structure is documented below.
18908
+ """
18909
+ if include_regexes is not None:
18910
+ pulumi.set(__self__, "include_regexes", include_regexes)
18911
+
18912
+ @_builtins.property
18913
+ @pulumi.getter(name="includeRegexes")
18914
+ def include_regexes(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesArgs']]:
18915
+ """
18916
+ A collection of regular expressions to match a resource against.
18917
+ Structure is documented below.
18918
+ """
18919
+ return pulumi.get(self, "include_regexes")
18920
+
18921
+ @include_regexes.setter
18922
+ def include_regexes(self, value: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesArgs']]):
18923
+ pulumi.set(self, "include_regexes", value)
18924
+
18925
+
18926
+ if not MYPY:
18927
+ class PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesArgsDict(TypedDict):
18928
+ patterns: NotRequired[pulumi.Input[Sequence[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternArgsDict']]]]
18929
+ """
18930
+ The group of regular expression patterns to match against one or more resources. Maximum of 100 entries. The sum of all lengths of regular expressions can't exceed 10 KiB.
18931
+ Structure is documented below.
18932
+ """
18933
+ elif False:
18934
+ PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesArgsDict: TypeAlias = Mapping[str, Any]
18935
+
18936
+ @pulumi.input_type
18937
+ class PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesArgs:
18938
+ def __init__(__self__, *,
18939
+ patterns: Optional[pulumi.Input[Sequence[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternArgs']]]] = None):
18940
+ """
18941
+ :param pulumi.Input[Sequence[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternArgs']]] patterns: The group of regular expression patterns to match against one or more resources. Maximum of 100 entries. The sum of all lengths of regular expressions can't exceed 10 KiB.
18942
+ Structure is documented below.
18943
+ """
18944
+ if patterns is not None:
18945
+ pulumi.set(__self__, "patterns", patterns)
18946
+
18947
+ @_builtins.property
18948
+ @pulumi.getter
18949
+ def patterns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternArgs']]]]:
18950
+ """
18951
+ The group of regular expression patterns to match against one or more resources. Maximum of 100 entries. The sum of all lengths of regular expressions can't exceed 10 KiB.
18952
+ Structure is documented below.
18953
+ """
18954
+ return pulumi.get(self, "patterns")
18955
+
18956
+ @patterns.setter
18957
+ def patterns(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternArgs']]]]):
18958
+ pulumi.set(self, "patterns", value)
18959
+
18960
+
18961
+ if not MYPY:
18962
+ class PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternArgsDict(TypedDict):
18963
+ amazon_s3_bucket_regex: NotRequired[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternAmazonS3BucketRegexArgsDict']]
18964
+ """
18965
+ Regex for Cloud Storage.
18966
+ Structure is documented below.
18967
+
18968
+
18969
+ <a name="nested_targets_targets_other_cloud_target_filter_collection_include_regexes_patterns_patterns_amazon_s3_bucket_regex"></a>The `amazon_s3_bucket_regex` block supports:
18970
+ """
18971
+ elif False:
18972
+ PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternArgsDict: TypeAlias = Mapping[str, Any]
18973
+
18974
+ @pulumi.input_type
18975
+ class PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternArgs:
18976
+ def __init__(__self__, *,
18977
+ amazon_s3_bucket_regex: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternAmazonS3BucketRegexArgs']] = None):
18978
+ """
18979
+ :param pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternAmazonS3BucketRegexArgs'] amazon_s3_bucket_regex: Regex for Cloud Storage.
18980
+ Structure is documented below.
18981
+
18982
+
18983
+ <a name="nested_targets_targets_other_cloud_target_filter_collection_include_regexes_patterns_patterns_amazon_s3_bucket_regex"></a>The `amazon_s3_bucket_regex` block supports:
18984
+ """
18985
+ if amazon_s3_bucket_regex is not None:
18986
+ pulumi.set(__self__, "amazon_s3_bucket_regex", amazon_s3_bucket_regex)
18987
+
18988
+ @_builtins.property
18989
+ @pulumi.getter(name="amazonS3BucketRegex")
18990
+ def amazon_s3_bucket_regex(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternAmazonS3BucketRegexArgs']]:
18991
+ """
18992
+ Regex for Cloud Storage.
18993
+ Structure is documented below.
18994
+
18995
+
18996
+ <a name="nested_targets_targets_other_cloud_target_filter_collection_include_regexes_patterns_patterns_amazon_s3_bucket_regex"></a>The `amazon_s3_bucket_regex` block supports:
18997
+ """
18998
+ return pulumi.get(self, "amazon_s3_bucket_regex")
18999
+
19000
+ @amazon_s3_bucket_regex.setter
19001
+ def amazon_s3_bucket_regex(self, value: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternAmazonS3BucketRegexArgs']]):
19002
+ pulumi.set(self, "amazon_s3_bucket_regex", value)
19003
+
19004
+
19005
+ if not MYPY:
19006
+ class PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternAmazonS3BucketRegexArgsDict(TypedDict):
19007
+ aws_account_regex: NotRequired[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternAmazonS3BucketRegexAwsAccountRegexArgsDict']]
19008
+ """
19009
+ The AWS account regex
19010
+ """
19011
+ bucket_name_regex: NotRequired[pulumi.Input[_builtins.str]]
19012
+ """
19013
+ Regex to test the bucket name against. If empty, all buckets match.
19014
+ """
19015
+ elif False:
19016
+ PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternAmazonS3BucketRegexArgsDict: TypeAlias = Mapping[str, Any]
19017
+
19018
+ @pulumi.input_type
19019
+ class PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternAmazonS3BucketRegexArgs:
19020
+ def __init__(__self__, *,
19021
+ aws_account_regex: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternAmazonS3BucketRegexAwsAccountRegexArgs']] = None,
19022
+ bucket_name_regex: Optional[pulumi.Input[_builtins.str]] = None):
19023
+ """
19024
+ :param pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternAmazonS3BucketRegexAwsAccountRegexArgs'] aws_account_regex: The AWS account regex
19025
+ :param pulumi.Input[_builtins.str] bucket_name_regex: Regex to test the bucket name against. If empty, all buckets match.
19026
+ """
19027
+ if aws_account_regex is not None:
19028
+ pulumi.set(__self__, "aws_account_regex", aws_account_regex)
19029
+ if bucket_name_regex is not None:
19030
+ pulumi.set(__self__, "bucket_name_regex", bucket_name_regex)
19031
+
19032
+ @_builtins.property
19033
+ @pulumi.getter(name="awsAccountRegex")
19034
+ def aws_account_regex(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternAmazonS3BucketRegexAwsAccountRegexArgs']]:
19035
+ """
19036
+ The AWS account regex
19037
+ """
19038
+ return pulumi.get(self, "aws_account_regex")
19039
+
19040
+ @aws_account_regex.setter
19041
+ def aws_account_regex(self, value: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternAmazonS3BucketRegexAwsAccountRegexArgs']]):
19042
+ pulumi.set(self, "aws_account_regex", value)
19043
+
19044
+ @_builtins.property
19045
+ @pulumi.getter(name="bucketNameRegex")
19046
+ def bucket_name_regex(self) -> Optional[pulumi.Input[_builtins.str]]:
19047
+ """
19048
+ Regex to test the bucket name against. If empty, all buckets match.
19049
+ """
19050
+ return pulumi.get(self, "bucket_name_regex")
19051
+
19052
+ @bucket_name_regex.setter
19053
+ def bucket_name_regex(self, value: Optional[pulumi.Input[_builtins.str]]):
19054
+ pulumi.set(self, "bucket_name_regex", value)
19055
+
19056
+
19057
+ if not MYPY:
19058
+ class PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternAmazonS3BucketRegexAwsAccountRegexArgsDict(TypedDict):
19059
+ account_id_regex: NotRequired[pulumi.Input[_builtins.str]]
19060
+ """
19061
+ Regex to test the AWS account ID against. If empty, all accounts match. Example: arn:aws:organizations::123:account/o-b2c3d4/345
19062
+ """
19063
+ elif False:
19064
+ PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternAmazonS3BucketRegexAwsAccountRegexArgsDict: TypeAlias = Mapping[str, Any]
19065
+
19066
+ @pulumi.input_type
19067
+ class PreventionDiscoveryConfigTargetOtherCloudTargetFilterCollectionIncludeRegexesPatternAmazonS3BucketRegexAwsAccountRegexArgs:
19068
+ def __init__(__self__, *,
19069
+ account_id_regex: Optional[pulumi.Input[_builtins.str]] = None):
19070
+ """
19071
+ :param pulumi.Input[_builtins.str] account_id_regex: Regex to test the AWS account ID against. If empty, all accounts match. Example: arn:aws:organizations::123:account/o-b2c3d4/345
19072
+ """
19073
+ if account_id_regex is not None:
19074
+ pulumi.set(__self__, "account_id_regex", account_id_regex)
19075
+
19076
+ @_builtins.property
19077
+ @pulumi.getter(name="accountIdRegex")
19078
+ def account_id_regex(self) -> Optional[pulumi.Input[_builtins.str]]:
19079
+ """
19080
+ Regex to test the AWS account ID against. If empty, all accounts match. Example: arn:aws:organizations::123:account/o-b2c3d4/345
19081
+ """
19082
+ return pulumi.get(self, "account_id_regex")
19083
+
19084
+ @account_id_regex.setter
19085
+ def account_id_regex(self, value: Optional[pulumi.Input[_builtins.str]]):
19086
+ pulumi.set(self, "account_id_regex", value)
19087
+
19088
+
19089
+ if not MYPY:
19090
+ class PreventionDiscoveryConfigTargetOtherCloudTargetFilterOthersArgsDict(TypedDict):
19091
+ pass
19092
+ elif False:
19093
+ PreventionDiscoveryConfigTargetOtherCloudTargetFilterOthersArgsDict: TypeAlias = Mapping[str, Any]
19094
+
19095
+ @pulumi.input_type
19096
+ class PreventionDiscoveryConfigTargetOtherCloudTargetFilterOthersArgs:
19097
+ def __init__(__self__):
19098
+ pass
19099
+
19100
+
19101
+ if not MYPY:
19102
+ class PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceArgsDict(TypedDict):
19103
+ amazon_s3_bucket: NotRequired[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceAmazonS3BucketArgsDict']]
19104
+ """
19105
+ Amazon S3 bucket.
19106
+ Structure is documented below.
19107
+
19108
+
19109
+ <a name="nested_targets_targets_other_cloud_target_filter_single_resource_amazon_s3_bucket"></a>The `amazon_s3_bucket` block supports:
19110
+ """
19111
+ elif False:
19112
+ PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceArgsDict: TypeAlias = Mapping[str, Any]
19113
+
19114
+ @pulumi.input_type
19115
+ class PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceArgs:
19116
+ def __init__(__self__, *,
19117
+ amazon_s3_bucket: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceAmazonS3BucketArgs']] = None):
19118
+ """
19119
+ :param pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceAmazonS3BucketArgs'] amazon_s3_bucket: Amazon S3 bucket.
19120
+ Structure is documented below.
19121
+
19122
+
19123
+ <a name="nested_targets_targets_other_cloud_target_filter_single_resource_amazon_s3_bucket"></a>The `amazon_s3_bucket` block supports:
19124
+ """
19125
+ if amazon_s3_bucket is not None:
19126
+ pulumi.set(__self__, "amazon_s3_bucket", amazon_s3_bucket)
19127
+
19128
+ @_builtins.property
19129
+ @pulumi.getter(name="amazonS3Bucket")
19130
+ def amazon_s3_bucket(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceAmazonS3BucketArgs']]:
19131
+ """
19132
+ Amazon S3 bucket.
19133
+ Structure is documented below.
19134
+
19135
+
19136
+ <a name="nested_targets_targets_other_cloud_target_filter_single_resource_amazon_s3_bucket"></a>The `amazon_s3_bucket` block supports:
19137
+ """
19138
+ return pulumi.get(self, "amazon_s3_bucket")
19139
+
19140
+ @amazon_s3_bucket.setter
19141
+ def amazon_s3_bucket(self, value: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceAmazonS3BucketArgs']]):
19142
+ pulumi.set(self, "amazon_s3_bucket", value)
19143
+
19144
+
19145
+ if not MYPY:
19146
+ class PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceAmazonS3BucketArgsDict(TypedDict):
19147
+ aws_account: NotRequired[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceAmazonS3BucketAwsAccountArgsDict']]
19148
+ """
19149
+ The AWS account.
19150
+ """
19151
+ bucket_name: NotRequired[pulumi.Input[_builtins.str]]
19152
+ """
19153
+ The bucket name.
19154
+ """
19155
+ elif False:
19156
+ PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceAmazonS3BucketArgsDict: TypeAlias = Mapping[str, Any]
19157
+
19158
+ @pulumi.input_type
19159
+ class PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceAmazonS3BucketArgs:
19160
+ def __init__(__self__, *,
19161
+ aws_account: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceAmazonS3BucketAwsAccountArgs']] = None,
19162
+ bucket_name: Optional[pulumi.Input[_builtins.str]] = None):
19163
+ """
19164
+ :param pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceAmazonS3BucketAwsAccountArgs'] aws_account: The AWS account.
19165
+ :param pulumi.Input[_builtins.str] bucket_name: The bucket name.
19166
+ """
19167
+ if aws_account is not None:
19168
+ pulumi.set(__self__, "aws_account", aws_account)
19169
+ if bucket_name is not None:
19170
+ pulumi.set(__self__, "bucket_name", bucket_name)
19171
+
19172
+ @_builtins.property
19173
+ @pulumi.getter(name="awsAccount")
19174
+ def aws_account(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceAmazonS3BucketAwsAccountArgs']]:
19175
+ """
19176
+ The AWS account.
19177
+ """
19178
+ return pulumi.get(self, "aws_account")
19179
+
19180
+ @aws_account.setter
19181
+ def aws_account(self, value: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceAmazonS3BucketAwsAccountArgs']]):
19182
+ pulumi.set(self, "aws_account", value)
19183
+
19184
+ @_builtins.property
19185
+ @pulumi.getter(name="bucketName")
19186
+ def bucket_name(self) -> Optional[pulumi.Input[_builtins.str]]:
19187
+ """
19188
+ The bucket name.
19189
+ """
19190
+ return pulumi.get(self, "bucket_name")
19191
+
19192
+ @bucket_name.setter
19193
+ def bucket_name(self, value: Optional[pulumi.Input[_builtins.str]]):
19194
+ pulumi.set(self, "bucket_name", value)
19195
+
19196
+
19197
+ if not MYPY:
19198
+ class PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceAmazonS3BucketAwsAccountArgsDict(TypedDict):
19199
+ account_id: NotRequired[pulumi.Input[_builtins.str]]
19200
+ """
19201
+ AWS account ID.
19202
+ """
19203
+ elif False:
19204
+ PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceAmazonS3BucketAwsAccountArgsDict: TypeAlias = Mapping[str, Any]
19205
+
19206
+ @pulumi.input_type
19207
+ class PreventionDiscoveryConfigTargetOtherCloudTargetFilterSingleResourceAmazonS3BucketAwsAccountArgs:
19208
+ def __init__(__self__, *,
19209
+ account_id: Optional[pulumi.Input[_builtins.str]] = None):
19210
+ """
19211
+ :param pulumi.Input[_builtins.str] account_id: AWS account ID.
19212
+ """
19213
+ if account_id is not None:
19214
+ pulumi.set(__self__, "account_id", account_id)
19215
+
19216
+ @_builtins.property
19217
+ @pulumi.getter(name="accountId")
19218
+ def account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
19219
+ """
19220
+ AWS account ID.
19221
+ """
19222
+ return pulumi.get(self, "account_id")
19223
+
19224
+ @account_id.setter
19225
+ def account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
19226
+ pulumi.set(self, "account_id", value)
19227
+
19228
+
19229
+ if not MYPY:
19230
+ class PreventionDiscoveryConfigTargetOtherCloudTargetGenerationCadenceArgsDict(TypedDict):
19231
+ inspect_template_modified_cadence: NotRequired[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetGenerationCadenceInspectTemplateModifiedCadenceArgsDict']]
19232
+ """
19233
+ 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.
19234
+ Structure is documented below.
19235
+ """
19236
+ refresh_frequency: NotRequired[pulumi.Input[_builtins.str]]
19237
+ """
19238
+ Frequency to update profiles regardless of whether the underlying resource has changes. Defaults to never.
19239
+ Possible values are: `UPDATE_FREQUENCY_NEVER`, `UPDATE_FREQUENCY_DAILY`, `UPDATE_FREQUENCY_MONTHLY`.
19240
+ """
19241
+ elif False:
19242
+ PreventionDiscoveryConfigTargetOtherCloudTargetGenerationCadenceArgsDict: TypeAlias = Mapping[str, Any]
19243
+
19244
+ @pulumi.input_type
19245
+ class PreventionDiscoveryConfigTargetOtherCloudTargetGenerationCadenceArgs:
19246
+ def __init__(__self__, *,
19247
+ inspect_template_modified_cadence: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetGenerationCadenceInspectTemplateModifiedCadenceArgs']] = None,
19248
+ refresh_frequency: Optional[pulumi.Input[_builtins.str]] = None):
19249
+ """
19250
+ :param pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetGenerationCadenceInspectTemplateModifiedCadenceArgs'] 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.
19251
+ Structure is documented below.
19252
+ :param pulumi.Input[_builtins.str] refresh_frequency: Frequency to update profiles regardless of whether the underlying resource has changes. Defaults to never.
19253
+ Possible values are: `UPDATE_FREQUENCY_NEVER`, `UPDATE_FREQUENCY_DAILY`, `UPDATE_FREQUENCY_MONTHLY`.
19254
+ """
19255
+ if inspect_template_modified_cadence is not None:
19256
+ pulumi.set(__self__, "inspect_template_modified_cadence", inspect_template_modified_cadence)
19257
+ if refresh_frequency is not None:
19258
+ pulumi.set(__self__, "refresh_frequency", refresh_frequency)
19259
+
19260
+ @_builtins.property
19261
+ @pulumi.getter(name="inspectTemplateModifiedCadence")
19262
+ def inspect_template_modified_cadence(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetGenerationCadenceInspectTemplateModifiedCadenceArgs']]:
19263
+ """
19264
+ 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.
19265
+ Structure is documented below.
19266
+ """
19267
+ return pulumi.get(self, "inspect_template_modified_cadence")
19268
+
19269
+ @inspect_template_modified_cadence.setter
19270
+ def inspect_template_modified_cadence(self, value: Optional[pulumi.Input['PreventionDiscoveryConfigTargetOtherCloudTargetGenerationCadenceInspectTemplateModifiedCadenceArgs']]):
19271
+ pulumi.set(self, "inspect_template_modified_cadence", value)
19272
+
19273
+ @_builtins.property
19274
+ @pulumi.getter(name="refreshFrequency")
19275
+ def refresh_frequency(self) -> Optional[pulumi.Input[_builtins.str]]:
19276
+ """
19277
+ Frequency to update profiles regardless of whether the underlying resource has changes. Defaults to never.
19278
+ Possible values are: `UPDATE_FREQUENCY_NEVER`, `UPDATE_FREQUENCY_DAILY`, `UPDATE_FREQUENCY_MONTHLY`.
19279
+ """
19280
+ return pulumi.get(self, "refresh_frequency")
19281
+
19282
+ @refresh_frequency.setter
19283
+ def refresh_frequency(self, value: Optional[pulumi.Input[_builtins.str]]):
19284
+ pulumi.set(self, "refresh_frequency", value)
19285
+
19286
+
19287
+ if not MYPY:
19288
+ class PreventionDiscoveryConfigTargetOtherCloudTargetGenerationCadenceInspectTemplateModifiedCadenceArgsDict(TypedDict):
19289
+ frequency: NotRequired[pulumi.Input[_builtins.str]]
19290
+ """
19291
+ How frequently data profiles can be updated when the template is modified. Defaults to never.
19292
+ Possible values are: `UPDATE_FREQUENCY_NEVER`, `UPDATE_FREQUENCY_DAILY`, `UPDATE_FREQUENCY_MONTHLY`.
19293
+ """
19294
+ elif False:
19295
+ PreventionDiscoveryConfigTargetOtherCloudTargetGenerationCadenceInspectTemplateModifiedCadenceArgsDict: TypeAlias = Mapping[str, Any]
19296
+
19297
+ @pulumi.input_type
19298
+ class PreventionDiscoveryConfigTargetOtherCloudTargetGenerationCadenceInspectTemplateModifiedCadenceArgs:
19299
+ def __init__(__self__, *,
19300
+ frequency: Optional[pulumi.Input[_builtins.str]] = None):
19301
+ """
19302
+ :param pulumi.Input[_builtins.str] frequency: How frequently data profiles can be updated when the template is modified. Defaults to never.
19303
+ Possible values are: `UPDATE_FREQUENCY_NEVER`, `UPDATE_FREQUENCY_DAILY`, `UPDATE_FREQUENCY_MONTHLY`.
19304
+ """
19305
+ if frequency is not None:
19306
+ pulumi.set(__self__, "frequency", frequency)
19307
+
19308
+ @_builtins.property
19309
+ @pulumi.getter
19310
+ def frequency(self) -> Optional[pulumi.Input[_builtins.str]]:
19311
+ """
19312
+ How frequently data profiles can be updated when the template is modified. Defaults to never.
19313
+ Possible values are: `UPDATE_FREQUENCY_NEVER`, `UPDATE_FREQUENCY_DAILY`, `UPDATE_FREQUENCY_MONTHLY`.
19314
+ """
19315
+ return pulumi.get(self, "frequency")
19316
+
19317
+ @frequency.setter
19318
+ def frequency(self, value: Optional[pulumi.Input[_builtins.str]]):
19319
+ pulumi.set(self, "frequency", value)
19320
+
19321
+
18382
19322
  if not MYPY:
18383
19323
  class PreventionDiscoveryConfigTargetSecretsTargetArgsDict(TypedDict):
18384
19324
  pass