pulumi-gcp 7.38.0a1724479203__py3-none-any.whl → 7.39.0a1724911478__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 (46) hide show
  1. pulumi_gcp/__init__.py +32 -0
  2. pulumi_gcp/appengine/flexible_app_version.py +8 -0
  3. pulumi_gcp/applicationintegration/client.py +2 -2
  4. pulumi_gcp/artifactregistry/__init__.py +1 -0
  5. pulumi_gcp/artifactregistry/get_locations.py +167 -0
  6. pulumi_gcp/bigquery/connection.py +12 -0
  7. pulumi_gcp/clouddeploy/_inputs.py +41 -1
  8. pulumi_gcp/clouddeploy/outputs.py +29 -1
  9. pulumi_gcp/cloudfunctionsv2/function.py +2 -0
  10. pulumi_gcp/cloudidentity/__init__.py +1 -0
  11. pulumi_gcp/cloudidentity/get_group_memberships.py +12 -0
  12. pulumi_gcp/cloudidentity/get_group_transitive_memberships.py +93 -0
  13. pulumi_gcp/cloudidentity/outputs.py +131 -0
  14. pulumi_gcp/compute/_inputs.py +36 -30
  15. pulumi_gcp/compute/outputs.py +48 -38
  16. pulumi_gcp/compute/region_network_endpoint_group.py +8 -0
  17. pulumi_gcp/compute/subnetwork.py +82 -0
  18. pulumi_gcp/container/_inputs.py +15 -18
  19. pulumi_gcp/container/attached_cluster.py +14 -7
  20. pulumi_gcp/container/outputs.py +10 -12
  21. pulumi_gcp/discoveryengine/__init__.py +1 -0
  22. pulumi_gcp/discoveryengine/schema.py +524 -0
  23. pulumi_gcp/dns/_inputs.py +80 -76
  24. pulumi_gcp/dns/outputs.py +56 -52
  25. pulumi_gcp/managedkafka/_inputs.py +6 -6
  26. pulumi_gcp/managedkafka/cluster.py +7 -7
  27. pulumi_gcp/managedkafka/outputs.py +4 -4
  28. pulumi_gcp/managedkafka/topic.py +7 -7
  29. pulumi_gcp/parallelstore/instance.py +215 -15
  30. pulumi_gcp/pulumi-plugin.json +1 -1
  31. pulumi_gcp/securitycenter/__init__.py +2 -0
  32. pulumi_gcp/securitycenter/_inputs.py +186 -0
  33. pulumi_gcp/securitycenter/folder_notification_config.py +486 -0
  34. pulumi_gcp/securitycenter/outputs.py +118 -0
  35. pulumi_gcp/securitycenter/v2_folder_notification_config.py +575 -0
  36. pulumi_gcp/servicenetworking/connection.py +50 -3
  37. pulumi_gcp/sql/_inputs.py +20 -0
  38. pulumi_gcp/sql/outputs.py +36 -0
  39. pulumi_gcp/vertex/__init__.py +1 -0
  40. pulumi_gcp/vertex/_inputs.py +438 -0
  41. pulumi_gcp/vertex/ai_index_endpoint_deployed_index.py +1170 -0
  42. pulumi_gcp/vertex/outputs.py +393 -0
  43. {pulumi_gcp-7.38.0a1724479203.dist-info → pulumi_gcp-7.39.0a1724911478.dist-info}/METADATA +1 -1
  44. {pulumi_gcp-7.38.0a1724479203.dist-info → pulumi_gcp-7.39.0a1724911478.dist-info}/RECORD +46 -40
  45. {pulumi_gcp-7.38.0a1724479203.dist-info → pulumi_gcp-7.39.0a1724911478.dist-info}/WHEEL +1 -1
  46. {pulumi_gcp-7.38.0a1724479203.dist-info → pulumi_gcp-7.39.0a1724911478.dist-info}/top_level.txt +0 -0
@@ -27,6 +27,8 @@ __all__ = [
27
27
  'FolderCustomModuleCustomConfigPredicateArgsDict',
28
28
  'FolderCustomModuleCustomConfigResourceSelectorArgs',
29
29
  'FolderCustomModuleCustomConfigResourceSelectorArgsDict',
30
+ 'FolderNotificationConfigStreamingConfigArgs',
31
+ 'FolderNotificationConfigStreamingConfigArgsDict',
30
32
  'InstanceIamBindingConditionArgs',
31
33
  'InstanceIamBindingConditionArgsDict',
32
34
  'InstanceIamMemberConditionArgs',
@@ -99,6 +101,8 @@ __all__ = [
99
101
  'SourceIamBindingConditionArgsDict',
100
102
  'SourceIamMemberConditionArgs',
101
103
  'SourceIamMemberConditionArgsDict',
104
+ 'V2FolderNotificationConfigStreamingConfigArgs',
105
+ 'V2FolderNotificationConfigStreamingConfigArgsDict',
102
106
  'V2OrganizationNotificationConfigStreamingConfigArgs',
103
107
  'V2OrganizationNotificationConfigStreamingConfigArgsDict',
104
108
  'V2OrganizationSourceIamBindingConditionArgs',
@@ -599,6 +603,97 @@ class FolderCustomModuleCustomConfigResourceSelectorArgs:
599
603
  pulumi.set(self, "resource_types", value)
600
604
 
601
605
 
606
+ if not MYPY:
607
+ class FolderNotificationConfigStreamingConfigArgsDict(TypedDict):
608
+ filter: pulumi.Input[str]
609
+ """
610
+ Expression that defines the filter to apply across create/update
611
+ events of assets or findings as specified by the event type. The
612
+ expression is a list of zero or more restrictions combined via
613
+ logical operators AND and OR. Parentheses are supported, and OR
614
+ has higher precedence than AND.
615
+ Restrictions have the form <field> <operator> <value> and may have
616
+ a - character in front of them to indicate negation. The fields
617
+ map to those defined in the corresponding resource.
618
+ The supported operators are:
619
+ * = for all value types.
620
+ * >, <, >=, <= for integer values.
621
+ * :, meaning substring matching, for strings.
622
+ The supported value types are:
623
+ * string literals in quotes.
624
+ * integer literals without quotes.
625
+ * boolean literals true and false without quotes.
626
+ See
627
+ [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
628
+ for information on how to write a filter.
629
+
630
+ - - -
631
+ """
632
+ elif False:
633
+ FolderNotificationConfigStreamingConfigArgsDict: TypeAlias = Mapping[str, Any]
634
+
635
+ @pulumi.input_type
636
+ class FolderNotificationConfigStreamingConfigArgs:
637
+ def __init__(__self__, *,
638
+ filter: pulumi.Input[str]):
639
+ """
640
+ :param pulumi.Input[str] filter: Expression that defines the filter to apply across create/update
641
+ events of assets or findings as specified by the event type. The
642
+ expression is a list of zero or more restrictions combined via
643
+ logical operators AND and OR. Parentheses are supported, and OR
644
+ has higher precedence than AND.
645
+ Restrictions have the form <field> <operator> <value> and may have
646
+ a - character in front of them to indicate negation. The fields
647
+ map to those defined in the corresponding resource.
648
+ The supported operators are:
649
+ * = for all value types.
650
+ * >, <, >=, <= for integer values.
651
+ * :, meaning substring matching, for strings.
652
+ The supported value types are:
653
+ * string literals in quotes.
654
+ * integer literals without quotes.
655
+ * boolean literals true and false without quotes.
656
+ See
657
+ [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
658
+ for information on how to write a filter.
659
+
660
+ - - -
661
+ """
662
+ pulumi.set(__self__, "filter", filter)
663
+
664
+ @property
665
+ @pulumi.getter
666
+ def filter(self) -> pulumi.Input[str]:
667
+ """
668
+ Expression that defines the filter to apply across create/update
669
+ events of assets or findings as specified by the event type. The
670
+ expression is a list of zero or more restrictions combined via
671
+ logical operators AND and OR. Parentheses are supported, and OR
672
+ has higher precedence than AND.
673
+ Restrictions have the form <field> <operator> <value> and may have
674
+ a - character in front of them to indicate negation. The fields
675
+ map to those defined in the corresponding resource.
676
+ The supported operators are:
677
+ * = for all value types.
678
+ * >, <, >=, <= for integer values.
679
+ * :, meaning substring matching, for strings.
680
+ The supported value types are:
681
+ * string literals in quotes.
682
+ * integer literals without quotes.
683
+ * boolean literals true and false without quotes.
684
+ See
685
+ [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
686
+ for information on how to write a filter.
687
+
688
+ - - -
689
+ """
690
+ return pulumi.get(self, "filter")
691
+
692
+ @filter.setter
693
+ def filter(self, value: pulumi.Input[str]):
694
+ pulumi.set(self, "filter", value)
695
+
696
+
602
697
  if not MYPY:
603
698
  class InstanceIamBindingConditionArgsDict(TypedDict):
604
699
  expression: pulumi.Input[str]
@@ -3431,6 +3526,97 @@ class SourceIamMemberConditionArgs:
3431
3526
  pulumi.set(self, "description", value)
3432
3527
 
3433
3528
 
3529
+ if not MYPY:
3530
+ class V2FolderNotificationConfigStreamingConfigArgsDict(TypedDict):
3531
+ filter: pulumi.Input[str]
3532
+ """
3533
+ Expression that defines the filter to apply across create/update
3534
+ events of assets or findings as specified by the event type. The
3535
+ expression is a list of zero or more restrictions combined via
3536
+ logical operators AND and OR. Parentheses are supported, and OR
3537
+ has higher precedence than AND.
3538
+ Restrictions have the form <field> <operator> <value> and may have
3539
+ a - character in front of them to indicate negation. The fields
3540
+ map to those defined in the corresponding resource.
3541
+ The supported operators are:
3542
+ * = for all value types.
3543
+ * >, <, >=, <= for integer values.
3544
+ * :, meaning substring matching, for strings.
3545
+ The supported value types are:
3546
+ * string literals in quotes.
3547
+ * integer literals without quotes.
3548
+ * boolean literals true and false without quotes.
3549
+ See
3550
+ [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
3551
+ for information on how to write a filter.
3552
+
3553
+ - - -
3554
+ """
3555
+ elif False:
3556
+ V2FolderNotificationConfigStreamingConfigArgsDict: TypeAlias = Mapping[str, Any]
3557
+
3558
+ @pulumi.input_type
3559
+ class V2FolderNotificationConfigStreamingConfigArgs:
3560
+ def __init__(__self__, *,
3561
+ filter: pulumi.Input[str]):
3562
+ """
3563
+ :param pulumi.Input[str] filter: Expression that defines the filter to apply across create/update
3564
+ events of assets or findings as specified by the event type. The
3565
+ expression is a list of zero or more restrictions combined via
3566
+ logical operators AND and OR. Parentheses are supported, and OR
3567
+ has higher precedence than AND.
3568
+ Restrictions have the form <field> <operator> <value> and may have
3569
+ a - character in front of them to indicate negation. The fields
3570
+ map to those defined in the corresponding resource.
3571
+ The supported operators are:
3572
+ * = for all value types.
3573
+ * >, <, >=, <= for integer values.
3574
+ * :, meaning substring matching, for strings.
3575
+ The supported value types are:
3576
+ * string literals in quotes.
3577
+ * integer literals without quotes.
3578
+ * boolean literals true and false without quotes.
3579
+ See
3580
+ [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
3581
+ for information on how to write a filter.
3582
+
3583
+ - - -
3584
+ """
3585
+ pulumi.set(__self__, "filter", filter)
3586
+
3587
+ @property
3588
+ @pulumi.getter
3589
+ def filter(self) -> pulumi.Input[str]:
3590
+ """
3591
+ Expression that defines the filter to apply across create/update
3592
+ events of assets or findings as specified by the event type. The
3593
+ expression is a list of zero or more restrictions combined via
3594
+ logical operators AND and OR. Parentheses are supported, and OR
3595
+ has higher precedence than AND.
3596
+ Restrictions have the form <field> <operator> <value> and may have
3597
+ a - character in front of them to indicate negation. The fields
3598
+ map to those defined in the corresponding resource.
3599
+ The supported operators are:
3600
+ * = for all value types.
3601
+ * >, <, >=, <= for integer values.
3602
+ * :, meaning substring matching, for strings.
3603
+ The supported value types are:
3604
+ * string literals in quotes.
3605
+ * integer literals without quotes.
3606
+ * boolean literals true and false without quotes.
3607
+ See
3608
+ [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
3609
+ for information on how to write a filter.
3610
+
3611
+ - - -
3612
+ """
3613
+ return pulumi.get(self, "filter")
3614
+
3615
+ @filter.setter
3616
+ def filter(self, value: pulumi.Input[str]):
3617
+ pulumi.set(self, "filter", value)
3618
+
3619
+
3434
3620
  if not MYPY:
3435
3621
  class V2OrganizationNotificationConfigStreamingConfigArgsDict(TypedDict):
3436
3622
  filter: pulumi.Input[str]