pulumi-gcp 7.36.0a1723631483__py3-none-any.whl → 7.37.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 (53) hide show
  1. pulumi_gcp/__init__.py +72 -0
  2. pulumi_gcp/accesscontextmanager/__init__.py +2 -0
  3. pulumi_gcp/accesscontextmanager/_inputs.py +780 -0
  4. pulumi_gcp/accesscontextmanager/outputs.py +601 -0
  5. pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_egress_policy.py +323 -0
  6. pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_ingress_policy.py +332 -0
  7. pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +2 -24
  8. pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +2 -24
  9. pulumi_gcp/applicationintegration/client.py +2 -2
  10. pulumi_gcp/clouddeploy/_inputs.py +21 -1
  11. pulumi_gcp/clouddeploy/outputs.py +15 -1
  12. pulumi_gcp/cloudrunv2/_inputs.py +40 -0
  13. pulumi_gcp/cloudrunv2/outputs.py +46 -0
  14. pulumi_gcp/compute/region_target_https_proxy.py +28 -0
  15. pulumi_gcp/container/_inputs.py +26 -0
  16. pulumi_gcp/container/outputs.py +29 -0
  17. pulumi_gcp/dataform/repository.py +80 -2
  18. pulumi_gcp/discoveryengine/data_store.py +93 -2
  19. pulumi_gcp/gkehub/_inputs.py +63 -0
  20. pulumi_gcp/gkehub/outputs.py +38 -0
  21. pulumi_gcp/logging/get_log_view_iam_policy.py +28 -2
  22. pulumi_gcp/logging/log_view_iam_binding.py +512 -0
  23. pulumi_gcp/logging/log_view_iam_member.py +512 -0
  24. pulumi_gcp/logging/log_view_iam_policy.py +512 -0
  25. pulumi_gcp/netapp/_inputs.py +6 -6
  26. pulumi_gcp/netapp/outputs.py +4 -4
  27. pulumi_gcp/networkconnectivity/regional_endpoint.py +6 -6
  28. pulumi_gcp/organizations/get_project.py +11 -1
  29. pulumi_gcp/organizations/project.py +76 -21
  30. pulumi_gcp/pulumi-plugin.json +1 -1
  31. pulumi_gcp/securitycenter/__init__.py +8 -0
  32. pulumi_gcp/securitycenter/_inputs.py +191 -0
  33. pulumi_gcp/securitycenter/get_v2_organization_source_iam_policy.py +146 -0
  34. pulumi_gcp/securitycenter/outputs.py +115 -0
  35. pulumi_gcp/securitycenter/v2_folder_mute_config.py +679 -0
  36. pulumi_gcp/securitycenter/v2_organization_source.py +416 -0
  37. pulumi_gcp/securitycenter/v2_organization_source_iam_binding.py +722 -0
  38. pulumi_gcp/securitycenter/v2_organization_source_iam_member.py +722 -0
  39. pulumi_gcp/securitycenter/v2_organization_source_iam_policy.py +561 -0
  40. pulumi_gcp/securitycenter/v2_project_mute_config.py +684 -0
  41. pulumi_gcp/securitycenter/v2_project_notification_config.py +559 -0
  42. pulumi_gcp/spanner/instance.py +0 -7
  43. pulumi_gcp/sql/_inputs.py +3 -3
  44. pulumi_gcp/sql/outputs.py +6 -6
  45. pulumi_gcp/storage/bucket_object.py +28 -0
  46. pulumi_gcp/storage/get_bucket_object.py +14 -1
  47. pulumi_gcp/storage/get_bucket_object_content.py +11 -1
  48. pulumi_gcp/storage/managed_folder.py +72 -2
  49. pulumi_gcp/vmwareengine/network_policy.py +6 -6
  50. {pulumi_gcp-7.36.0a1723631483.dist-info → pulumi_gcp-7.37.0.dist-info}/METADATA +1 -1
  51. {pulumi_gcp-7.36.0a1723631483.dist-info → pulumi_gcp-7.37.0.dist-info}/RECORD +53 -43
  52. {pulumi_gcp-7.36.0a1723631483.dist-info → pulumi_gcp-7.37.0.dist-info}/WHEEL +0 -0
  53. {pulumi_gcp-7.36.0a1723631483.dist-info → pulumi_gcp-7.37.0.dist-info}/top_level.txt +0 -0
@@ -59,6 +59,9 @@ __all__ = [
59
59
  'SourceIamBindingCondition',
60
60
  'SourceIamMemberCondition',
61
61
  'V2OrganizationNotificationConfigStreamingConfig',
62
+ 'V2OrganizationSourceIamBindingCondition',
63
+ 'V2OrganizationSourceIamMemberCondition',
64
+ 'V2ProjectNotificationConfigStreamingConfig',
62
65
  ]
63
66
 
64
67
  @pulumi.output_type
@@ -2435,3 +2438,115 @@ class V2OrganizationNotificationConfigStreamingConfig(dict):
2435
2438
  return pulumi.get(self, "filter")
2436
2439
 
2437
2440
 
2441
+ @pulumi.output_type
2442
+ class V2OrganizationSourceIamBindingCondition(dict):
2443
+ def __init__(__self__, *,
2444
+ expression: str,
2445
+ title: str,
2446
+ description: Optional[str] = None):
2447
+ pulumi.set(__self__, "expression", expression)
2448
+ pulumi.set(__self__, "title", title)
2449
+ if description is not None:
2450
+ pulumi.set(__self__, "description", description)
2451
+
2452
+ @property
2453
+ @pulumi.getter
2454
+ def expression(self) -> str:
2455
+ return pulumi.get(self, "expression")
2456
+
2457
+ @property
2458
+ @pulumi.getter
2459
+ def title(self) -> str:
2460
+ return pulumi.get(self, "title")
2461
+
2462
+ @property
2463
+ @pulumi.getter
2464
+ def description(self) -> Optional[str]:
2465
+ return pulumi.get(self, "description")
2466
+
2467
+
2468
+ @pulumi.output_type
2469
+ class V2OrganizationSourceIamMemberCondition(dict):
2470
+ def __init__(__self__, *,
2471
+ expression: str,
2472
+ title: str,
2473
+ description: Optional[str] = None):
2474
+ pulumi.set(__self__, "expression", expression)
2475
+ pulumi.set(__self__, "title", title)
2476
+ if description is not None:
2477
+ pulumi.set(__self__, "description", description)
2478
+
2479
+ @property
2480
+ @pulumi.getter
2481
+ def expression(self) -> str:
2482
+ return pulumi.get(self, "expression")
2483
+
2484
+ @property
2485
+ @pulumi.getter
2486
+ def title(self) -> str:
2487
+ return pulumi.get(self, "title")
2488
+
2489
+ @property
2490
+ @pulumi.getter
2491
+ def description(self) -> Optional[str]:
2492
+ return pulumi.get(self, "description")
2493
+
2494
+
2495
+ @pulumi.output_type
2496
+ class V2ProjectNotificationConfigStreamingConfig(dict):
2497
+ def __init__(__self__, *,
2498
+ filter: str):
2499
+ """
2500
+ :param str filter: Expression that defines the filter to apply across create/update
2501
+ events of assets or findings as specified by the event type. The
2502
+ expression is a list of zero or more restrictions combined via
2503
+ logical operators AND and OR. Parentheses are supported, and OR
2504
+ has higher precedence than AND.
2505
+ Restrictions have the form <field> <operator> <value> and may have
2506
+ a - character in front of them to indicate negation. The fields
2507
+ map to those defined in the corresponding resource.
2508
+ The supported operators are:
2509
+ * = for all value types.
2510
+ * >, <, >=, <= for integer values.
2511
+ * :, meaning substring matching, for strings.
2512
+ The supported value types are:
2513
+ * string literals in quotes.
2514
+ * integer literals without quotes.
2515
+ * boolean literals true and false without quotes.
2516
+ See
2517
+ [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
2518
+ for information on how to write a filter.
2519
+
2520
+ - - -
2521
+ """
2522
+ pulumi.set(__self__, "filter", filter)
2523
+
2524
+ @property
2525
+ @pulumi.getter
2526
+ def filter(self) -> str:
2527
+ """
2528
+ Expression that defines the filter to apply across create/update
2529
+ events of assets or findings as specified by the event type. The
2530
+ expression is a list of zero or more restrictions combined via
2531
+ logical operators AND and OR. Parentheses are supported, and OR
2532
+ has higher precedence than AND.
2533
+ Restrictions have the form <field> <operator> <value> and may have
2534
+ a - character in front of them to indicate negation. The fields
2535
+ map to those defined in the corresponding resource.
2536
+ The supported operators are:
2537
+ * = for all value types.
2538
+ * >, <, >=, <= for integer values.
2539
+ * :, meaning substring matching, for strings.
2540
+ The supported value types are:
2541
+ * string literals in quotes.
2542
+ * integer literals without quotes.
2543
+ * boolean literals true and false without quotes.
2544
+ See
2545
+ [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
2546
+ for information on how to write a filter.
2547
+
2548
+ - - -
2549
+ """
2550
+ return pulumi.get(self, "filter")
2551
+
2552
+