pulumi-gcp 7.26.0a1717690580__py3-none-any.whl → 7.27.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.
- pulumi_gcp/__init__.py +32 -0
- pulumi_gcp/appengine/_inputs.py +40 -0
- pulumi_gcp/appengine/flexible_app_version.py +47 -0
- pulumi_gcp/appengine/outputs.py +51 -0
- pulumi_gcp/bigtable/instance.py +47 -0
- pulumi_gcp/clouddeploy/_inputs.py +16 -0
- pulumi_gcp/clouddeploy/outputs.py +12 -0
- pulumi_gcp/compute/__init__.py +2 -0
- pulumi_gcp/compute/_inputs.py +84 -0
- pulumi_gcp/compute/backend_service.py +54 -0
- pulumi_gcp/compute/disk.py +68 -0
- pulumi_gcp/compute/get_backend_service.py +11 -1
- pulumi_gcp/compute/get_disk.py +11 -1
- pulumi_gcp/compute/get_instance.py +11 -1
- pulumi_gcp/compute/get_instance_group_manager.py +31 -1
- pulumi_gcp/compute/get_instance_template.py +11 -1
- pulumi_gcp/compute/get_region_instance_template.py +11 -1
- pulumi_gcp/compute/get_security_policy.py +214 -0
- pulumi_gcp/compute/instance.py +47 -0
- pulumi_gcp/compute/instance_from_machine_image.py +47 -0
- pulumi_gcp/compute/instance_from_template.py +47 -0
- pulumi_gcp/compute/instance_group_manager.py +185 -0
- pulumi_gcp/compute/instance_template.py +47 -0
- pulumi_gcp/compute/outputs.py +1039 -0
- pulumi_gcp/compute/project_cloud_armor_tier.py +336 -0
- pulumi_gcp/compute/region_instance_group_manager.py +185 -0
- pulumi_gcp/compute/region_instance_template.py +47 -0
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +33 -4
- pulumi_gcp/container/cluster.py +61 -0
- pulumi_gcp/container/get_cluster.py +11 -1
- pulumi_gcp/container/outputs.py +48 -4
- pulumi_gcp/dataloss/_inputs.py +185 -19
- pulumi_gcp/dataloss/outputs.py +206 -17
- pulumi_gcp/dataloss/prevention_inspect_template.py +54 -0
- pulumi_gcp/gkebackup/_inputs.py +282 -7
- pulumi_gcp/gkebackup/backup_plan.py +100 -0
- pulumi_gcp/gkebackup/outputs.py +312 -7
- pulumi_gcp/gkebackup/restore_plan.py +326 -0
- pulumi_gcp/gkebackup/restore_plan_iam_binding.py +326 -0
- pulumi_gcp/gkebackup/restore_plan_iam_member.py +326 -0
- pulumi_gcp/gkebackup/restore_plan_iam_policy.py +326 -0
- pulumi_gcp/healthcare/_inputs.py +17 -1
- pulumi_gcp/healthcare/dicom_store.py +2 -0
- pulumi_gcp/healthcare/fhir_store.py +44 -60
- pulumi_gcp/healthcare/outputs.py +15 -1
- pulumi_gcp/integrationconnectors/endpoint_attachment.py +47 -0
- pulumi_gcp/kms/crypto_key.py +14 -7
- pulumi_gcp/netapp/_inputs.py +58 -0
- pulumi_gcp/netapp/outputs.py +67 -0
- pulumi_gcp/netapp/volume.py +54 -0
- pulumi_gcp/networkservices/__init__.py +1 -0
- pulumi_gcp/networkservices/_inputs.py +47 -0
- pulumi_gcp/networkservices/outputs.py +56 -0
- pulumi_gcp/networkservices/service_lb_policies.py +782 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +44 -0
- pulumi_gcp/redis/cluster.py +128 -3
- pulumi_gcp/redis/outputs.py +36 -0
- pulumi_gcp/secretmanager/_inputs.py +20 -0
- pulumi_gcp/secretmanager/outputs.py +20 -0
- pulumi_gcp/secretmanager/secret_iam_binding.py +244 -0
- pulumi_gcp/secretmanager/secret_iam_member.py +244 -0
- pulumi_gcp/secretmanager/secret_iam_policy.py +224 -0
- pulumi_gcp/securitycenter/__init__.py +1 -0
- pulumi_gcp/securitycenter/management_organization_event_threat_detection_custom_module.py +568 -0
- pulumi_gcp/spanner/__init__.py +1 -0
- pulumi_gcp/spanner/_inputs.py +68 -0
- pulumi_gcp/spanner/instance_config.py +569 -0
- pulumi_gcp/spanner/outputs.py +73 -0
- pulumi_gcp/sql/_inputs.py +8 -2
- pulumi_gcp/sql/outputs.py +9 -6
- pulumi_gcp/workstations/_inputs.py +51 -1
- pulumi_gcp/workstations/outputs.py +46 -2
- pulumi_gcp/workstations/workstation_config.py +10 -4
- {pulumi_gcp-7.26.0a1717690580.dist-info → pulumi_gcp-7.27.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.26.0a1717690580.dist-info → pulumi_gcp-7.27.0.dist-info}/RECORD +81 -76
- {pulumi_gcp-7.26.0a1717690580.dist-info → pulumi_gcp-7.27.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.26.0a1717690580.dist-info → pulumi_gcp-7.27.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/dataloss/_inputs.py
CHANGED
@@ -230,6 +230,7 @@ __all__ = [
|
|
230
230
|
'PreventionDiscoveryConfigTargetBigQueryTargetDisabledArgs',
|
231
231
|
'PreventionDiscoveryConfigTargetBigQueryTargetFilterArgs',
|
232
232
|
'PreventionDiscoveryConfigTargetBigQueryTargetFilterOtherTablesArgs',
|
233
|
+
'PreventionDiscoveryConfigTargetBigQueryTargetFilterTableReferenceArgs',
|
233
234
|
'PreventionDiscoveryConfigTargetBigQueryTargetFilterTablesArgs',
|
234
235
|
'PreventionDiscoveryConfigTargetBigQueryTargetFilterTablesIncludeRegexesArgs',
|
235
236
|
'PreventionDiscoveryConfigTargetBigQueryTargetFilterTablesIncludeRegexesPatternArgs',
|
@@ -240,9 +241,11 @@ __all__ = [
|
|
240
241
|
'PreventionDiscoveryConfigTargetCloudSqlTargetFilterCollectionArgs',
|
241
242
|
'PreventionDiscoveryConfigTargetCloudSqlTargetFilterCollectionIncludeRegexesArgs',
|
242
243
|
'PreventionDiscoveryConfigTargetCloudSqlTargetFilterCollectionIncludeRegexesPatternArgs',
|
244
|
+
'PreventionDiscoveryConfigTargetCloudSqlTargetFilterDatabaseResourceReferenceArgs',
|
243
245
|
'PreventionDiscoveryConfigTargetCloudSqlTargetFilterOthersArgs',
|
244
246
|
'PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceArgs',
|
245
247
|
'PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceSchemaModifiedCadenceArgs',
|
248
|
+
'PreventionDiscoveryConfigTargetSecretsTargetArgs',
|
246
249
|
'PreventionInspectTemplateInspectConfigArgs',
|
247
250
|
'PreventionInspectTemplateInspectConfigCustomInfoTypeArgs',
|
248
251
|
'PreventionInspectTemplateInspectConfigCustomInfoTypeDictionaryArgs',
|
@@ -11789,17 +11792,21 @@ class PreventionDiscoveryConfigOrgConfigLocationArgs:
|
|
11789
11792
|
class PreventionDiscoveryConfigTargetArgs:
|
11790
11793
|
def __init__(__self__, *,
|
11791
11794
|
big_query_target: Optional[pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetArgs']] = None,
|
11792
|
-
cloud_sql_target: Optional[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetArgs']] = None
|
11795
|
+
cloud_sql_target: Optional[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetArgs']] = None,
|
11796
|
+
secrets_target: Optional[pulumi.Input['PreventionDiscoveryConfigTargetSecretsTargetArgs']] = None):
|
11793
11797
|
"""
|
11794
11798
|
:param pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetArgs'] big_query_target: BigQuery target for Discovery. The first target to match a table will be the one applied.
|
11795
11799
|
Structure is documented below.
|
11796
11800
|
:param pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetArgs'] cloud_sql_target: Cloud SQL target for Discovery. The first target to match a table will be the one applied.
|
11797
11801
|
Structure is documented below.
|
11802
|
+
: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.
|
11798
11803
|
"""
|
11799
11804
|
if big_query_target is not None:
|
11800
11805
|
pulumi.set(__self__, "big_query_target", big_query_target)
|
11801
11806
|
if cloud_sql_target is not None:
|
11802
11807
|
pulumi.set(__self__, "cloud_sql_target", cloud_sql_target)
|
11808
|
+
if secrets_target is not None:
|
11809
|
+
pulumi.set(__self__, "secrets_target", secrets_target)
|
11803
11810
|
|
11804
11811
|
@property
|
11805
11812
|
@pulumi.getter(name="bigQueryTarget")
|
@@ -11827,6 +11834,18 @@ class PreventionDiscoveryConfigTargetArgs:
|
|
11827
11834
|
def cloud_sql_target(self, value: Optional[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetArgs']]):
|
11828
11835
|
pulumi.set(self, "cloud_sql_target", value)
|
11829
11836
|
|
11837
|
+
@property
|
11838
|
+
@pulumi.getter(name="secretsTarget")
|
11839
|
+
def secrets_target(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigTargetSecretsTargetArgs']]:
|
11840
|
+
"""
|
11841
|
+
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.
|
11842
|
+
"""
|
11843
|
+
return pulumi.get(self, "secrets_target")
|
11844
|
+
|
11845
|
+
@secrets_target.setter
|
11846
|
+
def secrets_target(self, value: Optional[pulumi.Input['PreventionDiscoveryConfigTargetSecretsTargetArgs']]):
|
11847
|
+
pulumi.set(self, "secrets_target", value)
|
11848
|
+
|
11830
11849
|
|
11831
11850
|
@pulumi.input_type
|
11832
11851
|
class PreventionDiscoveryConfigTargetBigQueryTargetArgs:
|
@@ -12185,14 +12204,19 @@ class PreventionDiscoveryConfigTargetBigQueryTargetDisabledArgs:
|
|
12185
12204
|
class PreventionDiscoveryConfigTargetBigQueryTargetFilterArgs:
|
12186
12205
|
def __init__(__self__, *,
|
12187
12206
|
other_tables: Optional[pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetFilterOtherTablesArgs']] = None,
|
12207
|
+
table_reference: Optional[pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetFilterTableReferenceArgs']] = None,
|
12188
12208
|
tables: Optional[pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetFilterTablesArgs']] = None):
|
12189
12209
|
"""
|
12190
12210
|
:param pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetFilterOtherTablesArgs'] other_tables: Catch-all. This should always be the last filter in the list because anything above it will apply first.
|
12211
|
+
:param pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetFilterTableReferenceArgs'] table_reference: The table to scan. Discovery configurations including this can only include one DiscoveryTarget (the DiscoveryTarget with this TableReference).
|
12212
|
+
Structure is documented below.
|
12191
12213
|
:param pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetFilterTablesArgs'] tables: A specific set of tables for this filter to apply to. A table collection must be specified in only one filter per config.
|
12192
12214
|
Structure is documented below.
|
12193
12215
|
"""
|
12194
12216
|
if other_tables is not None:
|
12195
12217
|
pulumi.set(__self__, "other_tables", other_tables)
|
12218
|
+
if table_reference is not None:
|
12219
|
+
pulumi.set(__self__, "table_reference", table_reference)
|
12196
12220
|
if tables is not None:
|
12197
12221
|
pulumi.set(__self__, "tables", tables)
|
12198
12222
|
|
@@ -12208,6 +12232,19 @@ class PreventionDiscoveryConfigTargetBigQueryTargetFilterArgs:
|
|
12208
12232
|
def other_tables(self, value: Optional[pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetFilterOtherTablesArgs']]):
|
12209
12233
|
pulumi.set(self, "other_tables", value)
|
12210
12234
|
|
12235
|
+
@property
|
12236
|
+
@pulumi.getter(name="tableReference")
|
12237
|
+
def table_reference(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetFilterTableReferenceArgs']]:
|
12238
|
+
"""
|
12239
|
+
The table to scan. Discovery configurations including this can only include one DiscoveryTarget (the DiscoveryTarget with this TableReference).
|
12240
|
+
Structure is documented below.
|
12241
|
+
"""
|
12242
|
+
return pulumi.get(self, "table_reference")
|
12243
|
+
|
12244
|
+
@table_reference.setter
|
12245
|
+
def table_reference(self, value: Optional[pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetFilterTableReferenceArgs']]):
|
12246
|
+
pulumi.set(self, "table_reference", value)
|
12247
|
+
|
12211
12248
|
@property
|
12212
12249
|
@pulumi.getter
|
12213
12250
|
def tables(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigTargetBigQueryTargetFilterTablesArgs']]:
|
@@ -12228,6 +12265,43 @@ class PreventionDiscoveryConfigTargetBigQueryTargetFilterOtherTablesArgs:
|
|
12228
12265
|
pass
|
12229
12266
|
|
12230
12267
|
|
12268
|
+
@pulumi.input_type
|
12269
|
+
class PreventionDiscoveryConfigTargetBigQueryTargetFilterTableReferenceArgs:
|
12270
|
+
def __init__(__self__, *,
|
12271
|
+
dataset_id: pulumi.Input[str],
|
12272
|
+
table_id: pulumi.Input[str]):
|
12273
|
+
"""
|
12274
|
+
:param pulumi.Input[str] dataset_id: Dataset ID of the table.
|
12275
|
+
:param pulumi.Input[str] table_id: Name of the table.
|
12276
|
+
"""
|
12277
|
+
pulumi.set(__self__, "dataset_id", dataset_id)
|
12278
|
+
pulumi.set(__self__, "table_id", table_id)
|
12279
|
+
|
12280
|
+
@property
|
12281
|
+
@pulumi.getter(name="datasetId")
|
12282
|
+
def dataset_id(self) -> pulumi.Input[str]:
|
12283
|
+
"""
|
12284
|
+
Dataset ID of the table.
|
12285
|
+
"""
|
12286
|
+
return pulumi.get(self, "dataset_id")
|
12287
|
+
|
12288
|
+
@dataset_id.setter
|
12289
|
+
def dataset_id(self, value: pulumi.Input[str]):
|
12290
|
+
pulumi.set(self, "dataset_id", value)
|
12291
|
+
|
12292
|
+
@property
|
12293
|
+
@pulumi.getter(name="tableId")
|
12294
|
+
def table_id(self) -> pulumi.Input[str]:
|
12295
|
+
"""
|
12296
|
+
Name of the table.
|
12297
|
+
"""
|
12298
|
+
return pulumi.get(self, "table_id")
|
12299
|
+
|
12300
|
+
@table_id.setter
|
12301
|
+
def table_id(self, value: pulumi.Input[str]):
|
12302
|
+
pulumi.set(self, "table_id", value)
|
12303
|
+
|
12304
|
+
|
12231
12305
|
@pulumi.input_type
|
12232
12306
|
class PreventionDiscoveryConfigTargetBigQueryTargetFilterTablesArgs:
|
12233
12307
|
def __init__(__self__, *,
|
@@ -12462,14 +12536,19 @@ class PreventionDiscoveryConfigTargetCloudSqlTargetDisabledArgs:
|
|
12462
12536
|
class PreventionDiscoveryConfigTargetCloudSqlTargetFilterArgs:
|
12463
12537
|
def __init__(__self__, *,
|
12464
12538
|
collection: Optional[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetFilterCollectionArgs']] = None,
|
12539
|
+
database_resource_reference: Optional[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetFilterDatabaseResourceReferenceArgs']] = None,
|
12465
12540
|
others: Optional[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetFilterOthersArgs']] = None):
|
12466
12541
|
"""
|
12467
12542
|
:param pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetFilterCollectionArgs'] collection: A specific set of database resources for this filter to apply to.
|
12468
12543
|
Structure is documented below.
|
12544
|
+
: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).
|
12545
|
+
Structure is documented below.
|
12469
12546
|
:param pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetFilterOthersArgs'] others: Catch-all. This should always be the last target in the list because anything above it will apply first. Should only appear once in a configuration. If none is specified, a default one will be added automatically.
|
12470
12547
|
"""
|
12471
12548
|
if collection is not None:
|
12472
12549
|
pulumi.set(__self__, "collection", collection)
|
12550
|
+
if database_resource_reference is not None:
|
12551
|
+
pulumi.set(__self__, "database_resource_reference", database_resource_reference)
|
12473
12552
|
if others is not None:
|
12474
12553
|
pulumi.set(__self__, "others", others)
|
12475
12554
|
|
@@ -12486,6 +12565,19 @@ class PreventionDiscoveryConfigTargetCloudSqlTargetFilterArgs:
|
|
12486
12565
|
def collection(self, value: Optional[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetFilterCollectionArgs']]):
|
12487
12566
|
pulumi.set(self, "collection", value)
|
12488
12567
|
|
12568
|
+
@property
|
12569
|
+
@pulumi.getter(name="databaseResourceReference")
|
12570
|
+
def database_resource_reference(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetFilterDatabaseResourceReferenceArgs']]:
|
12571
|
+
"""
|
12572
|
+
The database resource to scan. Targets including this can only include one target (the target with this database resource reference).
|
12573
|
+
Structure is documented below.
|
12574
|
+
"""
|
12575
|
+
return pulumi.get(self, "database_resource_reference")
|
12576
|
+
|
12577
|
+
@database_resource_reference.setter
|
12578
|
+
def database_resource_reference(self, value: Optional[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetFilterDatabaseResourceReferenceArgs']]):
|
12579
|
+
pulumi.set(self, "database_resource_reference", value)
|
12580
|
+
|
12489
12581
|
@property
|
12490
12582
|
@pulumi.getter
|
12491
12583
|
def others(self) -> Optional[pulumi.Input['PreventionDiscoveryConfigTargetCloudSqlTargetFilterOthersArgs']]:
|
@@ -12620,6 +12712,73 @@ class PreventionDiscoveryConfigTargetCloudSqlTargetFilterCollectionIncludeRegexe
|
|
12620
12712
|
pulumi.set(self, "project_id_regex", value)
|
12621
12713
|
|
12622
12714
|
|
12715
|
+
@pulumi.input_type
|
12716
|
+
class PreventionDiscoveryConfigTargetCloudSqlTargetFilterDatabaseResourceReferenceArgs:
|
12717
|
+
def __init__(__self__, *,
|
12718
|
+
database: pulumi.Input[str],
|
12719
|
+
database_resource: pulumi.Input[str],
|
12720
|
+
instance: pulumi.Input[str],
|
12721
|
+
project_id: pulumi.Input[str]):
|
12722
|
+
"""
|
12723
|
+
:param pulumi.Input[str] database: Required. Name of a database within the instance.
|
12724
|
+
:param pulumi.Input[str] database_resource: Required. Name of a database resource, for example, a table within the database.
|
12725
|
+
:param pulumi.Input[str] instance: Required. The instance where this resource is located. For example: Cloud SQL instance ID.
|
12726
|
+
:param pulumi.Input[str] project_id: Required. If within a project-level config, then this must match the config's project ID.
|
12727
|
+
"""
|
12728
|
+
pulumi.set(__self__, "database", database)
|
12729
|
+
pulumi.set(__self__, "database_resource", database_resource)
|
12730
|
+
pulumi.set(__self__, "instance", instance)
|
12731
|
+
pulumi.set(__self__, "project_id", project_id)
|
12732
|
+
|
12733
|
+
@property
|
12734
|
+
@pulumi.getter
|
12735
|
+
def database(self) -> pulumi.Input[str]:
|
12736
|
+
"""
|
12737
|
+
Required. Name of a database within the instance.
|
12738
|
+
"""
|
12739
|
+
return pulumi.get(self, "database")
|
12740
|
+
|
12741
|
+
@database.setter
|
12742
|
+
def database(self, value: pulumi.Input[str]):
|
12743
|
+
pulumi.set(self, "database", value)
|
12744
|
+
|
12745
|
+
@property
|
12746
|
+
@pulumi.getter(name="databaseResource")
|
12747
|
+
def database_resource(self) -> pulumi.Input[str]:
|
12748
|
+
"""
|
12749
|
+
Required. Name of a database resource, for example, a table within the database.
|
12750
|
+
"""
|
12751
|
+
return pulumi.get(self, "database_resource")
|
12752
|
+
|
12753
|
+
@database_resource.setter
|
12754
|
+
def database_resource(self, value: pulumi.Input[str]):
|
12755
|
+
pulumi.set(self, "database_resource", value)
|
12756
|
+
|
12757
|
+
@property
|
12758
|
+
@pulumi.getter
|
12759
|
+
def instance(self) -> pulumi.Input[str]:
|
12760
|
+
"""
|
12761
|
+
Required. The instance where this resource is located. For example: Cloud SQL instance ID.
|
12762
|
+
"""
|
12763
|
+
return pulumi.get(self, "instance")
|
12764
|
+
|
12765
|
+
@instance.setter
|
12766
|
+
def instance(self, value: pulumi.Input[str]):
|
12767
|
+
pulumi.set(self, "instance", value)
|
12768
|
+
|
12769
|
+
@property
|
12770
|
+
@pulumi.getter(name="projectId")
|
12771
|
+
def project_id(self) -> pulumi.Input[str]:
|
12772
|
+
"""
|
12773
|
+
Required. If within a project-level config, then this must match the config's project ID.
|
12774
|
+
"""
|
12775
|
+
return pulumi.get(self, "project_id")
|
12776
|
+
|
12777
|
+
@project_id.setter
|
12778
|
+
def project_id(self, value: pulumi.Input[str]):
|
12779
|
+
pulumi.set(self, "project_id", value)
|
12780
|
+
|
12781
|
+
|
12623
12782
|
@pulumi.input_type
|
12624
12783
|
class PreventionDiscoveryConfigTargetCloudSqlTargetFilterOthersArgs:
|
12625
12784
|
def __init__(__self__):
|
@@ -12712,6 +12871,12 @@ class PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceSchemaModifi
|
|
12712
12871
|
pulumi.set(self, "types", value)
|
12713
12872
|
|
12714
12873
|
|
12874
|
+
@pulumi.input_type
|
12875
|
+
class PreventionDiscoveryConfigTargetSecretsTargetArgs:
|
12876
|
+
def __init__(__self__):
|
12877
|
+
pass
|
12878
|
+
|
12879
|
+
|
12715
12880
|
@pulumi.input_type
|
12716
12881
|
class PreventionInspectTemplateInspectConfigArgs:
|
12717
12882
|
def __init__(__self__, *,
|
@@ -13432,21 +13597,34 @@ class PreventionInspectTemplateInspectConfigLimitsArgs:
|
|
13432
13597
|
@pulumi.input_type
|
13433
13598
|
class PreventionInspectTemplateInspectConfigLimitsMaxFindingsPerInfoTypeArgs:
|
13434
13599
|
def __init__(__self__, *,
|
13435
|
-
|
13436
|
-
|
13600
|
+
max_findings: pulumi.Input[int],
|
13601
|
+
info_type: Optional[pulumi.Input['PreventionInspectTemplateInspectConfigLimitsMaxFindingsPerInfoTypeInfoTypeArgs']] = None):
|
13437
13602
|
"""
|
13603
|
+
:param pulumi.Input[int] max_findings: Max findings limit for the given infoType.
|
13438
13604
|
:param pulumi.Input['PreventionInspectTemplateInspectConfigLimitsMaxFindingsPerInfoTypeInfoTypeArgs'] info_type: Type of information the findings limit applies to. Only one limit per infoType should be provided. If InfoTypeLimit does
|
13439
13605
|
not have an infoType, the DLP API applies the limit against all infoTypes that are found but not
|
13440
13606
|
specified in another InfoTypeLimit.
|
13441
13607
|
Structure is documented below.
|
13442
|
-
:param pulumi.Input[int] max_findings: Max findings limit for the given infoType.
|
13443
13608
|
"""
|
13444
|
-
pulumi.set(__self__, "info_type", info_type)
|
13445
13609
|
pulumi.set(__self__, "max_findings", max_findings)
|
13610
|
+
if info_type is not None:
|
13611
|
+
pulumi.set(__self__, "info_type", info_type)
|
13612
|
+
|
13613
|
+
@property
|
13614
|
+
@pulumi.getter(name="maxFindings")
|
13615
|
+
def max_findings(self) -> pulumi.Input[int]:
|
13616
|
+
"""
|
13617
|
+
Max findings limit for the given infoType.
|
13618
|
+
"""
|
13619
|
+
return pulumi.get(self, "max_findings")
|
13620
|
+
|
13621
|
+
@max_findings.setter
|
13622
|
+
def max_findings(self, value: pulumi.Input[int]):
|
13623
|
+
pulumi.set(self, "max_findings", value)
|
13446
13624
|
|
13447
13625
|
@property
|
13448
13626
|
@pulumi.getter(name="infoType")
|
13449
|
-
def info_type(self) -> pulumi.Input['PreventionInspectTemplateInspectConfigLimitsMaxFindingsPerInfoTypeInfoTypeArgs']:
|
13627
|
+
def info_type(self) -> Optional[pulumi.Input['PreventionInspectTemplateInspectConfigLimitsMaxFindingsPerInfoTypeInfoTypeArgs']]:
|
13450
13628
|
"""
|
13451
13629
|
Type of information the findings limit applies to. Only one limit per infoType should be provided. If InfoTypeLimit does
|
13452
13630
|
not have an infoType, the DLP API applies the limit against all infoTypes that are found but not
|
@@ -13456,21 +13634,9 @@ class PreventionInspectTemplateInspectConfigLimitsMaxFindingsPerInfoTypeArgs:
|
|
13456
13634
|
return pulumi.get(self, "info_type")
|
13457
13635
|
|
13458
13636
|
@info_type.setter
|
13459
|
-
def info_type(self, value: pulumi.Input['PreventionInspectTemplateInspectConfigLimitsMaxFindingsPerInfoTypeInfoTypeArgs']):
|
13637
|
+
def info_type(self, value: Optional[pulumi.Input['PreventionInspectTemplateInspectConfigLimitsMaxFindingsPerInfoTypeInfoTypeArgs']]):
|
13460
13638
|
pulumi.set(self, "info_type", value)
|
13461
13639
|
|
13462
|
-
@property
|
13463
|
-
@pulumi.getter(name="maxFindings")
|
13464
|
-
def max_findings(self) -> pulumi.Input[int]:
|
13465
|
-
"""
|
13466
|
-
Max findings limit for the given infoType.
|
13467
|
-
"""
|
13468
|
-
return pulumi.get(self, "max_findings")
|
13469
|
-
|
13470
|
-
@max_findings.setter
|
13471
|
-
def max_findings(self, value: pulumi.Input[int]):
|
13472
|
-
pulumi.set(self, "max_findings", value)
|
13473
|
-
|
13474
13640
|
|
13475
13641
|
@pulumi.input_type
|
13476
13642
|
class PreventionInspectTemplateInspectConfigLimitsMaxFindingsPerInfoTypeInfoTypeArgs:
|