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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (103) hide show
  1. pulumi_gcp/__init__.py +51 -0
  2. pulumi_gcp/alloydb/cluster.py +0 -24
  3. pulumi_gcp/applicationintegration/auth_config.py +2 -2
  4. pulumi_gcp/bigquery/_inputs.py +0 -12
  5. pulumi_gcp/bigquery/dataset.py +0 -28
  6. pulumi_gcp/bigquery/dataset_access.py +0 -28
  7. pulumi_gcp/bigquery/outputs.py +0 -24
  8. pulumi_gcp/bigquery/reservation_assignment.py +48 -30
  9. pulumi_gcp/bigtable/authorized_view.py +104 -0
  10. pulumi_gcp/certificateauthority/certificate_template.py +2 -2
  11. pulumi_gcp/certificatemanager/_inputs.py +33 -0
  12. pulumi_gcp/certificatemanager/outputs.py +36 -0
  13. pulumi_gcp/certificatemanager/trust_config.py +107 -0
  14. pulumi_gcp/compute/_inputs.py +3 -6
  15. pulumi_gcp/compute/ca_external_account_key.py +2 -2
  16. pulumi_gcp/compute/get_health_check.py +11 -1
  17. pulumi_gcp/compute/global_address.py +16 -4
  18. pulumi_gcp/compute/global_forwarding_rule.py +2 -4
  19. pulumi_gcp/compute/health_check.py +124 -0
  20. pulumi_gcp/compute/instance.py +14 -14
  21. pulumi_gcp/compute/instance_group_membership.py +2 -2
  22. pulumi_gcp/compute/outputs.py +4 -8
  23. pulumi_gcp/compute/region_network_endpoint.py +2 -2
  24. pulumi_gcp/compute/region_network_endpoint_group.py +2 -2
  25. pulumi_gcp/compute/subnetwork.py +2 -2
  26. pulumi_gcp/compute/target_instance.py +2 -2
  27. pulumi_gcp/config/__init__.pyi +4 -0
  28. pulumi_gcp/config/vars.py +8 -0
  29. pulumi_gcp/container/_inputs.py +3 -3
  30. pulumi_gcp/container/outputs.py +4 -4
  31. pulumi_gcp/containeranalysis/note.py +2 -2
  32. pulumi_gcp/dataloss/_inputs.py +3 -0
  33. pulumi_gcp/dataloss/outputs.py +2 -0
  34. pulumi_gcp/dataloss/prevention_job_trigger.py +90 -0
  35. pulumi_gcp/dataplex/_inputs.py +56 -0
  36. pulumi_gcp/dataplex/datascan.py +12 -0
  37. pulumi_gcp/dataplex/outputs.py +52 -0
  38. pulumi_gcp/filestore/backup.py +2 -2
  39. pulumi_gcp/filestore/instance.py +2 -2
  40. pulumi_gcp/filestore/snapshot.py +2 -2
  41. pulumi_gcp/gkehub/__init__.py +1 -0
  42. pulumi_gcp/gkehub/_inputs.py +20 -0
  43. pulumi_gcp/gkehub/get_membership_binding.py +222 -0
  44. pulumi_gcp/gkehub/outputs.py +31 -0
  45. pulumi_gcp/iap/client.py +7 -7
  46. pulumi_gcp/kms/__init__.py +2 -0
  47. pulumi_gcp/kms/_inputs.py +40 -0
  48. pulumi_gcp/kms/crypto_key.py +110 -7
  49. pulumi_gcp/kms/get_crypto_keys.py +143 -0
  50. pulumi_gcp/kms/get_key_rings.py +119 -0
  51. pulumi_gcp/kms/get_kms_crypto_key.py +11 -1
  52. pulumi_gcp/kms/outputs.py +382 -0
  53. pulumi_gcp/logging/_inputs.py +12 -12
  54. pulumi_gcp/logging/folder_bucket_config.py +6 -6
  55. pulumi_gcp/logging/organization_bucket_config.py +6 -6
  56. pulumi_gcp/logging/outputs.py +8 -8
  57. pulumi_gcp/logging/project_bucket_config.py +6 -6
  58. pulumi_gcp/looker/instance.py +2 -2
  59. pulumi_gcp/monitoring/custom_service.py +2 -2
  60. pulumi_gcp/monitoring/generic_service.py +2 -2
  61. pulumi_gcp/monitoring/notification_channel.py +2 -2
  62. pulumi_gcp/monitoring/slo.py +2 -2
  63. pulumi_gcp/netapp/storage_pool.py +132 -53
  64. pulumi_gcp/netapp/volume.py +60 -4
  65. pulumi_gcp/networksecurity/address_group.py +85 -1
  66. pulumi_gcp/networksecurity/firewall_endpoint.py +2 -2
  67. pulumi_gcp/networksecurity/firewall_endpoint_association.py +2 -2
  68. pulumi_gcp/networksecurity/security_profile_group.py +2 -2
  69. pulumi_gcp/orgpolicy/_inputs.py +40 -10
  70. pulumi_gcp/orgpolicy/outputs.py +28 -8
  71. pulumi_gcp/orgpolicy/policy.py +52 -35
  72. pulumi_gcp/privilegedaccessmanager/entitlement.py +4 -0
  73. pulumi_gcp/provider.py +40 -0
  74. pulumi_gcp/pubsub/_inputs.py +3 -3
  75. pulumi_gcp/pubsub/outputs.py +4 -4
  76. pulumi_gcp/pulumi-plugin.json +1 -1
  77. pulumi_gcp/securesourcemanager/__init__.py +5 -0
  78. pulumi_gcp/securesourcemanager/_inputs.py +284 -0
  79. pulumi_gcp/securesourcemanager/get_repository_iam_policy.py +177 -0
  80. pulumi_gcp/securesourcemanager/outputs.py +202 -0
  81. pulumi_gcp/securesourcemanager/repository.py +715 -0
  82. pulumi_gcp/securesourcemanager/repository_iam_binding.py +804 -0
  83. pulumi_gcp/securesourcemanager/repository_iam_member.py +804 -0
  84. pulumi_gcp/securesourcemanager/repository_iam_policy.py +643 -0
  85. pulumi_gcp/securitycenter/__init__.py +2 -0
  86. pulumi_gcp/securitycenter/_inputs.py +186 -0
  87. pulumi_gcp/securitycenter/outputs.py +118 -0
  88. pulumi_gcp/securitycenter/project_notification_config.py +518 -0
  89. pulumi_gcp/securitycenter/v2_organization_notification_config.py +576 -0
  90. pulumi_gcp/securityposture/posture_deployment.py +0 -78
  91. pulumi_gcp/servicenetworking/vpc_service_controls.py +2 -2
  92. pulumi_gcp/siteverification/__init__.py +8 -0
  93. pulumi_gcp/siteverification/get_token.py +221 -0
  94. pulumi_gcp/vertex/_inputs.py +21 -1
  95. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +222 -0
  96. pulumi_gcp/vertex/outputs.py +15 -1
  97. pulumi_gcp/workstations/_inputs.py +33 -1
  98. pulumi_gcp/workstations/outputs.py +23 -1
  99. pulumi_gcp/workstations/workstation_config.py +18 -0
  100. {pulumi_gcp-7.31.0a1720850808.dist-info → pulumi_gcp-7.32.0.dist-info}/METADATA +1 -1
  101. {pulumi_gcp-7.31.0a1720850808.dist-info → pulumi_gcp-7.32.0.dist-info}/RECORD +103 -91
  102. {pulumi_gcp-7.31.0a1720850808.dist-info → pulumi_gcp-7.32.0.dist-info}/WHEEL +0 -0
  103. {pulumi_gcp-7.31.0a1720850808.dist-info → pulumi_gcp-7.32.0.dist-info}/top_level.txt +0 -0
@@ -93,10 +93,14 @@ __all__ = [
93
93
  'ProjectCustomModuleCustomConfigPredicateArgsDict',
94
94
  'ProjectCustomModuleCustomConfigResourceSelectorArgs',
95
95
  'ProjectCustomModuleCustomConfigResourceSelectorArgsDict',
96
+ 'ProjectNotificationConfigStreamingConfigArgs',
97
+ 'ProjectNotificationConfigStreamingConfigArgsDict',
96
98
  'SourceIamBindingConditionArgs',
97
99
  'SourceIamBindingConditionArgsDict',
98
100
  'SourceIamMemberConditionArgs',
99
101
  'SourceIamMemberConditionArgsDict',
102
+ 'V2OrganizationNotificationConfigStreamingConfigArgs',
103
+ 'V2OrganizationNotificationConfigStreamingConfigArgsDict',
100
104
  ]
101
105
 
102
106
  MYPY = False
@@ -3218,6 +3222,97 @@ class ProjectCustomModuleCustomConfigResourceSelectorArgs:
3218
3222
  pulumi.set(self, "resource_types", value)
3219
3223
 
3220
3224
 
3225
+ if not MYPY:
3226
+ class ProjectNotificationConfigStreamingConfigArgsDict(TypedDict):
3227
+ filter: pulumi.Input[str]
3228
+ """
3229
+ Expression that defines the filter to apply across create/update
3230
+ events of assets or findings as specified by the event type. The
3231
+ expression is a list of zero or more restrictions combined via
3232
+ logical operators AND and OR. Parentheses are supported, and OR
3233
+ has higher precedence than AND.
3234
+ Restrictions have the form <field> <operator> <value> and may have
3235
+ a - character in front of them to indicate negation. The fields
3236
+ map to those defined in the corresponding resource.
3237
+ The supported operators are:
3238
+ * = for all value types.
3239
+ * >, <, >=, <= for integer values.
3240
+ * :, meaning substring matching, for strings.
3241
+ The supported value types are:
3242
+ * string literals in quotes.
3243
+ * integer literals without quotes.
3244
+ * boolean literals true and false without quotes.
3245
+ See
3246
+ [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
3247
+ for information on how to write a filter.
3248
+
3249
+ - - -
3250
+ """
3251
+ elif False:
3252
+ ProjectNotificationConfigStreamingConfigArgsDict: TypeAlias = Mapping[str, Any]
3253
+
3254
+ @pulumi.input_type
3255
+ class ProjectNotificationConfigStreamingConfigArgs:
3256
+ def __init__(__self__, *,
3257
+ filter: pulumi.Input[str]):
3258
+ """
3259
+ :param pulumi.Input[str] filter: Expression that defines the filter to apply across create/update
3260
+ events of assets or findings as specified by the event type. The
3261
+ expression is a list of zero or more restrictions combined via
3262
+ logical operators AND and OR. Parentheses are supported, and OR
3263
+ has higher precedence than AND.
3264
+ Restrictions have the form <field> <operator> <value> and may have
3265
+ a - character in front of them to indicate negation. The fields
3266
+ map to those defined in the corresponding resource.
3267
+ The supported operators are:
3268
+ * = for all value types.
3269
+ * >, <, >=, <= for integer values.
3270
+ * :, meaning substring matching, for strings.
3271
+ The supported value types are:
3272
+ * string literals in quotes.
3273
+ * integer literals without quotes.
3274
+ * boolean literals true and false without quotes.
3275
+ See
3276
+ [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
3277
+ for information on how to write a filter.
3278
+
3279
+ - - -
3280
+ """
3281
+ pulumi.set(__self__, "filter", filter)
3282
+
3283
+ @property
3284
+ @pulumi.getter
3285
+ def filter(self) -> pulumi.Input[str]:
3286
+ """
3287
+ Expression that defines the filter to apply across create/update
3288
+ events of assets or findings as specified by the event type. The
3289
+ expression is a list of zero or more restrictions combined via
3290
+ logical operators AND and OR. Parentheses are supported, and OR
3291
+ has higher precedence than AND.
3292
+ Restrictions have the form <field> <operator> <value> and may have
3293
+ a - character in front of them to indicate negation. The fields
3294
+ map to those defined in the corresponding resource.
3295
+ The supported operators are:
3296
+ * = for all value types.
3297
+ * >, <, >=, <= for integer values.
3298
+ * :, meaning substring matching, for strings.
3299
+ The supported value types are:
3300
+ * string literals in quotes.
3301
+ * integer literals without quotes.
3302
+ * boolean literals true and false without quotes.
3303
+ See
3304
+ [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
3305
+ for information on how to write a filter.
3306
+
3307
+ - - -
3308
+ """
3309
+ return pulumi.get(self, "filter")
3310
+
3311
+ @filter.setter
3312
+ def filter(self, value: pulumi.Input[str]):
3313
+ pulumi.set(self, "filter", value)
3314
+
3315
+
3221
3316
  if not MYPY:
3222
3317
  class SourceIamBindingConditionArgsDict(TypedDict):
3223
3318
  expression: pulumi.Input[str]
@@ -3330,3 +3425,94 @@ class SourceIamMemberConditionArgs:
3330
3425
  pulumi.set(self, "description", value)
3331
3426
 
3332
3427
 
3428
+ if not MYPY:
3429
+ class V2OrganizationNotificationConfigStreamingConfigArgsDict(TypedDict):
3430
+ filter: pulumi.Input[str]
3431
+ """
3432
+ Expression that defines the filter to apply across create/update
3433
+ events of assets or findings as specified by the event type. The
3434
+ expression is a list of zero or more restrictions combined via
3435
+ logical operators AND and OR. Parentheses are supported, and OR
3436
+ has higher precedence than AND.
3437
+ Restrictions have the form <field> <operator> <value> and may have
3438
+ a - character in front of them to indicate negation. The fields
3439
+ map to those defined in the corresponding resource.
3440
+ The supported operators are:
3441
+ * = for all value types.
3442
+ * >, <, >=, <= for integer values.
3443
+ * :, meaning substring matching, for strings.
3444
+ The supported value types are:
3445
+ * string literals in quotes.
3446
+ * integer literals without quotes.
3447
+ * boolean literals true and false without quotes.
3448
+ See
3449
+ [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
3450
+ for information on how to write a filter.
3451
+
3452
+ - - -
3453
+ """
3454
+ elif False:
3455
+ V2OrganizationNotificationConfigStreamingConfigArgsDict: TypeAlias = Mapping[str, Any]
3456
+
3457
+ @pulumi.input_type
3458
+ class V2OrganizationNotificationConfigStreamingConfigArgs:
3459
+ def __init__(__self__, *,
3460
+ filter: pulumi.Input[str]):
3461
+ """
3462
+ :param pulumi.Input[str] filter: Expression that defines the filter to apply across create/update
3463
+ events of assets or findings as specified by the event type. The
3464
+ expression is a list of zero or more restrictions combined via
3465
+ logical operators AND and OR. Parentheses are supported, and OR
3466
+ has higher precedence than AND.
3467
+ Restrictions have the form <field> <operator> <value> and may have
3468
+ a - character in front of them to indicate negation. The fields
3469
+ map to those defined in the corresponding resource.
3470
+ The supported operators are:
3471
+ * = for all value types.
3472
+ * >, <, >=, <= for integer values.
3473
+ * :, meaning substring matching, for strings.
3474
+ The supported value types are:
3475
+ * string literals in quotes.
3476
+ * integer literals without quotes.
3477
+ * boolean literals true and false without quotes.
3478
+ See
3479
+ [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
3480
+ for information on how to write a filter.
3481
+
3482
+ - - -
3483
+ """
3484
+ pulumi.set(__self__, "filter", filter)
3485
+
3486
+ @property
3487
+ @pulumi.getter
3488
+ def filter(self) -> pulumi.Input[str]:
3489
+ """
3490
+ Expression that defines the filter to apply across create/update
3491
+ events of assets or findings as specified by the event type. The
3492
+ expression is a list of zero or more restrictions combined via
3493
+ logical operators AND and OR. Parentheses are supported, and OR
3494
+ has higher precedence than AND.
3495
+ Restrictions have the form <field> <operator> <value> and may have
3496
+ a - character in front of them to indicate negation. The fields
3497
+ map to those defined in the corresponding resource.
3498
+ The supported operators are:
3499
+ * = for all value types.
3500
+ * >, <, >=, <= for integer values.
3501
+ * :, meaning substring matching, for strings.
3502
+ The supported value types are:
3503
+ * string literals in quotes.
3504
+ * integer literals without quotes.
3505
+ * boolean literals true and false without quotes.
3506
+ See
3507
+ [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
3508
+ for information on how to write a filter.
3509
+
3510
+ - - -
3511
+ """
3512
+ return pulumi.get(self, "filter")
3513
+
3514
+ @filter.setter
3515
+ def filter(self, value: pulumi.Input[str]):
3516
+ pulumi.set(self, "filter", value)
3517
+
3518
+
@@ -55,8 +55,10 @@ __all__ = [
55
55
  'ProjectCustomModuleCustomConfigCustomOutputPropertyValueExpression',
56
56
  'ProjectCustomModuleCustomConfigPredicate',
57
57
  'ProjectCustomModuleCustomConfigResourceSelector',
58
+ 'ProjectNotificationConfigStreamingConfig',
58
59
  'SourceIamBindingCondition',
59
60
  'SourceIamMemberCondition',
61
+ 'V2OrganizationNotificationConfigStreamingConfig',
60
62
  ]
61
63
 
62
64
  @pulumi.output_type
@@ -2251,6 +2253,64 @@ class ProjectCustomModuleCustomConfigResourceSelector(dict):
2251
2253
  return pulumi.get(self, "resource_types")
2252
2254
 
2253
2255
 
2256
+ @pulumi.output_type
2257
+ class ProjectNotificationConfigStreamingConfig(dict):
2258
+ def __init__(__self__, *,
2259
+ filter: str):
2260
+ """
2261
+ :param str filter: Expression that defines the filter to apply across create/update
2262
+ events of assets or findings as specified by the event type. The
2263
+ expression is a list of zero or more restrictions combined via
2264
+ logical operators AND and OR. Parentheses are supported, and OR
2265
+ has higher precedence than AND.
2266
+ Restrictions have the form <field> <operator> <value> and may have
2267
+ a - character in front of them to indicate negation. The fields
2268
+ map to those defined in the corresponding resource.
2269
+ The supported operators are:
2270
+ * = for all value types.
2271
+ * >, <, >=, <= for integer values.
2272
+ * :, meaning substring matching, for strings.
2273
+ The supported value types are:
2274
+ * string literals in quotes.
2275
+ * integer literals without quotes.
2276
+ * boolean literals true and false without quotes.
2277
+ See
2278
+ [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
2279
+ for information on how to write a filter.
2280
+
2281
+ - - -
2282
+ """
2283
+ pulumi.set(__self__, "filter", filter)
2284
+
2285
+ @property
2286
+ @pulumi.getter
2287
+ def filter(self) -> str:
2288
+ """
2289
+ Expression that defines the filter to apply across create/update
2290
+ events of assets or findings as specified by the event type. The
2291
+ expression is a list of zero or more restrictions combined via
2292
+ logical operators AND and OR. Parentheses are supported, and OR
2293
+ has higher precedence than AND.
2294
+ Restrictions have the form <field> <operator> <value> and may have
2295
+ a - character in front of them to indicate negation. The fields
2296
+ map to those defined in the corresponding resource.
2297
+ The supported operators are:
2298
+ * = for all value types.
2299
+ * >, <, >=, <= for integer values.
2300
+ * :, meaning substring matching, for strings.
2301
+ The supported value types are:
2302
+ * string literals in quotes.
2303
+ * integer literals without quotes.
2304
+ * boolean literals true and false without quotes.
2305
+ See
2306
+ [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
2307
+ for information on how to write a filter.
2308
+
2309
+ - - -
2310
+ """
2311
+ return pulumi.get(self, "filter")
2312
+
2313
+
2254
2314
  @pulumi.output_type
2255
2315
  class SourceIamBindingCondition(dict):
2256
2316
  def __init__(__self__, *,
@@ -2317,3 +2377,61 @@ class SourceIamMemberCondition(dict):
2317
2377
  return pulumi.get(self, "description")
2318
2378
 
2319
2379
 
2380
+ @pulumi.output_type
2381
+ class V2OrganizationNotificationConfigStreamingConfig(dict):
2382
+ def __init__(__self__, *,
2383
+ filter: str):
2384
+ """
2385
+ :param str filter: Expression that defines the filter to apply across create/update
2386
+ events of assets or findings as specified by the event type. The
2387
+ expression is a list of zero or more restrictions combined via
2388
+ logical operators AND and OR. Parentheses are supported, and OR
2389
+ has higher precedence than AND.
2390
+ Restrictions have the form <field> <operator> <value> and may have
2391
+ a - character in front of them to indicate negation. The fields
2392
+ map to those defined in the corresponding resource.
2393
+ The supported operators are:
2394
+ * = for all value types.
2395
+ * >, <, >=, <= for integer values.
2396
+ * :, meaning substring matching, for strings.
2397
+ The supported value types are:
2398
+ * string literals in quotes.
2399
+ * integer literals without quotes.
2400
+ * boolean literals true and false without quotes.
2401
+ See
2402
+ [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
2403
+ for information on how to write a filter.
2404
+
2405
+ - - -
2406
+ """
2407
+ pulumi.set(__self__, "filter", filter)
2408
+
2409
+ @property
2410
+ @pulumi.getter
2411
+ def filter(self) -> str:
2412
+ """
2413
+ Expression that defines the filter to apply across create/update
2414
+ events of assets or findings as specified by the event type. The
2415
+ expression is a list of zero or more restrictions combined via
2416
+ logical operators AND and OR. Parentheses are supported, and OR
2417
+ has higher precedence than AND.
2418
+ Restrictions have the form <field> <operator> <value> and may have
2419
+ a - character in front of them to indicate negation. The fields
2420
+ map to those defined in the corresponding resource.
2421
+ The supported operators are:
2422
+ * = for all value types.
2423
+ * >, <, >=, <= for integer values.
2424
+ * :, meaning substring matching, for strings.
2425
+ The supported value types are:
2426
+ * string literals in quotes.
2427
+ * integer literals without quotes.
2428
+ * boolean literals true and false without quotes.
2429
+ See
2430
+ [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
2431
+ for information on how to write a filter.
2432
+
2433
+ - - -
2434
+ """
2435
+ return pulumi.get(self, "filter")
2436
+
2437
+