pulumi-gcp 8.40.0a1754636117__py3-none-any.whl → 8.40.0a1754951145__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 (157) hide show
  1. pulumi_gcp/__init__.py +128 -0
  2. pulumi_gcp/accesscontextmanager/_inputs.py +24 -4
  3. pulumi_gcp/accesscontextmanager/outputs.py +15 -3
  4. pulumi_gcp/apigee/__init__.py +2 -0
  5. pulumi_gcp/apigee/_inputs.py +1435 -0
  6. pulumi_gcp/apigee/api_product.py +1698 -0
  7. pulumi_gcp/apigee/outputs.py +1081 -0
  8. pulumi_gcp/apigee/security_action.py +1010 -0
  9. pulumi_gcp/artifactregistry/__init__.py +1 -0
  10. pulumi_gcp/artifactregistry/get_docker_images.py +164 -0
  11. pulumi_gcp/artifactregistry/outputs.py +109 -2
  12. pulumi_gcp/artifactregistry/repository.py +6 -6
  13. pulumi_gcp/backupdisasterrecovery/backup_vault.py +56 -0
  14. pulumi_gcp/backupdisasterrecovery/get_backup_vault.py +12 -1
  15. pulumi_gcp/bigquery/_inputs.py +6 -0
  16. pulumi_gcp/bigquery/get_table.py +23 -1
  17. pulumi_gcp/bigquery/outputs.py +4 -0
  18. pulumi_gcp/bigquery/table.py +62 -0
  19. pulumi_gcp/bigqueryanalyticshub/_inputs.py +180 -0
  20. pulumi_gcp/bigqueryanalyticshub/data_exchange.py +80 -0
  21. pulumi_gcp/bigqueryanalyticshub/listing.py +322 -2
  22. pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +32 -0
  23. pulumi_gcp/bigqueryanalyticshub/outputs.py +159 -0
  24. pulumi_gcp/bigtable/__init__.py +1 -0
  25. pulumi_gcp/bigtable/_inputs.py +33 -0
  26. pulumi_gcp/bigtable/outputs.py +36 -0
  27. pulumi_gcp/bigtable/schema_bundle.py +568 -0
  28. pulumi_gcp/cloudfunctions/_inputs.py +48 -0
  29. pulumi_gcp/cloudfunctions/function.py +94 -0
  30. pulumi_gcp/cloudfunctions/get_function.py +23 -1
  31. pulumi_gcp/cloudfunctions/outputs.py +70 -0
  32. pulumi_gcp/cloudrunv2/_inputs.py +20 -0
  33. pulumi_gcp/cloudrunv2/job.py +2 -0
  34. pulumi_gcp/cloudrunv2/outputs.py +25 -0
  35. pulumi_gcp/cloudrunv2/worker_pool.py +2 -0
  36. pulumi_gcp/compute/__init__.py +1 -0
  37. pulumi_gcp/compute/_inputs.py +713 -22
  38. pulumi_gcp/compute/firewall_policy_with_rules.py +66 -0
  39. pulumi_gcp/compute/forwarding_rule.py +0 -21
  40. pulumi_gcp/compute/get_router.py +12 -1
  41. pulumi_gcp/compute/outputs.py +562 -22
  42. pulumi_gcp/compute/preview_feature.py +396 -0
  43. pulumi_gcp/compute/region_url_map.py +392 -0
  44. pulumi_gcp/compute/reservation.py +4 -4
  45. pulumi_gcp/compute/router.py +54 -0
  46. pulumi_gcp/compute/storage_pool.py +154 -0
  47. pulumi_gcp/compute/subnetwork.py +54 -0
  48. pulumi_gcp/config/__init__.pyi +2 -0
  49. pulumi_gcp/config/vars.py +4 -0
  50. pulumi_gcp/container/_inputs.py +278 -8
  51. pulumi_gcp/container/cluster.py +61 -21
  52. pulumi_gcp/container/get_cluster.py +12 -1
  53. pulumi_gcp/container/outputs.py +352 -8
  54. pulumi_gcp/dataproc/_inputs.py +249 -14
  55. pulumi_gcp/dataproc/batch.py +6 -0
  56. pulumi_gcp/dataproc/cluster.py +2 -0
  57. pulumi_gcp/dataproc/outputs.py +215 -12
  58. pulumi_gcp/dataproc/session_template.py +14 -2
  59. pulumi_gcp/developerconnect/__init__.py +1 -0
  60. pulumi_gcp/developerconnect/_inputs.py +583 -0
  61. pulumi_gcp/developerconnect/insights_config.py +895 -0
  62. pulumi_gcp/developerconnect/outputs.py +442 -0
  63. pulumi_gcp/diagflow/__init__.py +1 -0
  64. pulumi_gcp/diagflow/_inputs.py +1165 -58
  65. pulumi_gcp/diagflow/cx_generator.py +636 -0
  66. pulumi_gcp/diagflow/cx_tool.py +2 -2
  67. pulumi_gcp/diagflow/cx_webhook.py +380 -36
  68. pulumi_gcp/diagflow/outputs.py +848 -25
  69. pulumi_gcp/discoveryengine/__init__.py +2 -0
  70. pulumi_gcp/discoveryengine/_inputs.py +465 -0
  71. pulumi_gcp/discoveryengine/cmek_config.py +707 -0
  72. pulumi_gcp/discoveryengine/outputs.py +412 -0
  73. pulumi_gcp/discoveryengine/recommendation_engine.py +813 -0
  74. pulumi_gcp/firestore/field.py +6 -6
  75. pulumi_gcp/gemini/gemini_gcp_enablement_setting.py +107 -9
  76. pulumi_gcp/gemini/gemini_gcp_enablement_setting_binding.py +2 -2
  77. pulumi_gcp/gkehub/membership_binding.py +6 -6
  78. pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
  79. pulumi_gcp/gkehub/namespace.py +4 -4
  80. pulumi_gcp/gkehub/scope_rbac_role_binding.py +8 -8
  81. pulumi_gcp/iam/__init__.py +4 -0
  82. pulumi_gcp/iam/_inputs.py +98 -0
  83. pulumi_gcp/iam/get_workforce_pool_iam_policy.py +161 -0
  84. pulumi_gcp/iam/outputs.py +56 -0
  85. pulumi_gcp/iam/workforce_pool_iam_binding.py +761 -0
  86. pulumi_gcp/iam/workforce_pool_iam_member.py +761 -0
  87. pulumi_gcp/iam/workforce_pool_iam_policy.py +600 -0
  88. pulumi_gcp/iap/tunnel_dest_group.py +2 -2
  89. pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
  90. pulumi_gcp/looker/instance.py +28 -7
  91. pulumi_gcp/managedkafka/_inputs.py +127 -0
  92. pulumi_gcp/managedkafka/cluster.py +131 -1
  93. pulumi_gcp/managedkafka/connect_cluster.py +4 -4
  94. pulumi_gcp/managedkafka/connector.py +4 -4
  95. pulumi_gcp/managedkafka/outputs.py +128 -0
  96. pulumi_gcp/memorystore/instance.py +8 -12
  97. pulumi_gcp/modelarmor/__init__.py +1 -0
  98. pulumi_gcp/modelarmor/_inputs.py +683 -0
  99. pulumi_gcp/modelarmor/floorsetting.py +736 -0
  100. pulumi_gcp/modelarmor/outputs.py +618 -0
  101. pulumi_gcp/networkconnectivity/_inputs.py +60 -0
  102. pulumi_gcp/networkconnectivity/internal_range.py +136 -0
  103. pulumi_gcp/networkconnectivity/outputs.py +55 -0
  104. pulumi_gcp/networkconnectivity/spoke.py +14 -14
  105. pulumi_gcp/oracledatabase/__init__.py +2 -0
  106. pulumi_gcp/oracledatabase/autonomous_database.py +262 -38
  107. pulumi_gcp/oracledatabase/cloud_vm_cluster.py +314 -50
  108. pulumi_gcp/oracledatabase/get_autonomous_database.py +23 -1
  109. pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +34 -1
  110. pulumi_gcp/oracledatabase/odb_network.py +721 -0
  111. pulumi_gcp/oracledatabase/odb_subnet.py +803 -0
  112. pulumi_gcp/oracledatabase/outputs.py +83 -0
  113. pulumi_gcp/orgpolicy/policy.py +2 -2
  114. pulumi_gcp/parametermanager/parameter_version.py +62 -0
  115. pulumi_gcp/parametermanager/regional_parameter_version.py +64 -0
  116. pulumi_gcp/provider.py +20 -0
  117. pulumi_gcp/pubsub/subscription.py +46 -6
  118. pulumi_gcp/pubsub/topic.py +36 -0
  119. pulumi_gcp/pulumi-plugin.json +1 -1
  120. pulumi_gcp/redis/cluster.py +70 -0
  121. pulumi_gcp/redis/get_cluster.py +12 -1
  122. pulumi_gcp/redis/instance.py +8 -12
  123. pulumi_gcp/secretmanager/get_regional_secret.py +12 -1
  124. pulumi_gcp/secretmanager/get_secret.py +12 -1
  125. pulumi_gcp/secretmanager/outputs.py +30 -0
  126. pulumi_gcp/secretmanager/regional_secret.py +61 -0
  127. pulumi_gcp/secretmanager/secret.py +61 -0
  128. pulumi_gcp/securesourcemanager/branch_rule.py +16 -8
  129. pulumi_gcp/securesourcemanager/instance.py +112 -4
  130. pulumi_gcp/securesourcemanager/repository.py +112 -8
  131. pulumi_gcp/serviceaccount/get_account_key.py +1 -0
  132. pulumi_gcp/sql/_inputs.py +6 -6
  133. pulumi_gcp/sql/database.py +0 -12
  134. pulumi_gcp/sql/outputs.py +4 -4
  135. pulumi_gcp/storage/__init__.py +2 -0
  136. pulumi_gcp/storage/_inputs.py +451 -0
  137. pulumi_gcp/storage/bucket.py +7 -7
  138. pulumi_gcp/storage/bucket_object.py +34 -0
  139. pulumi_gcp/storage/get_bucket_object.py +12 -1
  140. pulumi_gcp/storage/get_bucket_object_content.py +12 -1
  141. pulumi_gcp/storage/get_insights_dataset_config.py +363 -0
  142. pulumi_gcp/storage/insights_dataset_config.py +1280 -0
  143. pulumi_gcp/storage/outputs.py +619 -0
  144. pulumi_gcp/vertex/__init__.py +1 -0
  145. pulumi_gcp/vertex/_inputs.py +3646 -3
  146. pulumi_gcp/vertex/ai_endpoint.py +4 -4
  147. pulumi_gcp/vertex/ai_endpoint_with_model_garden_deployment.py +940 -0
  148. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
  149. pulumi_gcp/vertex/outputs.py +2609 -2
  150. pulumi_gcp/vmwareengine/network_peering.py +7 -7
  151. pulumi_gcp/workbench/_inputs.py +118 -0
  152. pulumi_gcp/workbench/instance.py +171 -2
  153. pulumi_gcp/workbench/outputs.py +91 -0
  154. {pulumi_gcp-8.40.0a1754636117.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/METADATA +1 -1
  155. {pulumi_gcp-8.40.0a1754636117.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/RECORD +157 -138
  156. {pulumi_gcp-8.40.0a1754636117.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/WHEEL +0 -0
  157. {pulumi_gcp-8.40.0a1754636117.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/top_level.txt +0 -0
@@ -66,6 +66,16 @@ __all__ = [
66
66
  'ControlProjectIntelligenceConfigFilterIncludedCloudStorageLocations',
67
67
  'ControlProjectIntelligenceConfigTrialConfig',
68
68
  'DefaultObjectAccessControlProjectTeam',
69
+ 'InsightsDatasetConfigExcludeCloudStorageBuckets',
70
+ 'InsightsDatasetConfigExcludeCloudStorageBucketsCloudStorageBucket',
71
+ 'InsightsDatasetConfigExcludeCloudStorageLocations',
72
+ 'InsightsDatasetConfigIdentity',
73
+ 'InsightsDatasetConfigIncludeCloudStorageBuckets',
74
+ 'InsightsDatasetConfigIncludeCloudStorageBucketsCloudStorageBucket',
75
+ 'InsightsDatasetConfigIncludeCloudStorageLocations',
76
+ 'InsightsDatasetConfigLink',
77
+ 'InsightsDatasetConfigSourceFolders',
78
+ 'InsightsDatasetConfigSourceProjects',
69
79
  'InsightsReportConfigCsvOptions',
70
80
  'InsightsReportConfigFrequencyOptions',
71
81
  'InsightsReportConfigFrequencyOptionsEndDate',
@@ -148,6 +158,16 @@ __all__ = [
148
158
  'GetControlProjectIntelligenceConfigFilterIncludedCloudStorageBucketResult',
149
159
  'GetControlProjectIntelligenceConfigFilterIncludedCloudStorageLocationResult',
150
160
  'GetControlProjectIntelligenceConfigTrialConfigResult',
161
+ 'GetInsightsDatasetConfigExcludeCloudStorageBucketResult',
162
+ 'GetInsightsDatasetConfigExcludeCloudStorageBucketCloudStorageBucketResult',
163
+ 'GetInsightsDatasetConfigExcludeCloudStorageLocationResult',
164
+ 'GetInsightsDatasetConfigIdentityResult',
165
+ 'GetInsightsDatasetConfigIncludeCloudStorageBucketResult',
166
+ 'GetInsightsDatasetConfigIncludeCloudStorageBucketCloudStorageBucketResult',
167
+ 'GetInsightsDatasetConfigIncludeCloudStorageLocationResult',
168
+ 'GetInsightsDatasetConfigLinkResult',
169
+ 'GetInsightsDatasetConfigSourceFolderResult',
170
+ 'GetInsightsDatasetConfigSourceProjectResult',
151
171
  ]
152
172
 
153
173
  @pulumi.output_type
@@ -2579,6 +2599,369 @@ class DefaultObjectAccessControlProjectTeam(dict):
2579
2599
  return pulumi.get(self, "team")
2580
2600
 
2581
2601
 
2602
+ @pulumi.output_type
2603
+ class InsightsDatasetConfigExcludeCloudStorageBuckets(dict):
2604
+ @staticmethod
2605
+ def __key_warning(key: str):
2606
+ suggest = None
2607
+ if key == "cloudStorageBuckets":
2608
+ suggest = "cloud_storage_buckets"
2609
+
2610
+ if suggest:
2611
+ pulumi.log.warn(f"Key '{key}' not found in InsightsDatasetConfigExcludeCloudStorageBuckets. Access the value via the '{suggest}' property getter instead.")
2612
+
2613
+ def __getitem__(self, key: str) -> Any:
2614
+ InsightsDatasetConfigExcludeCloudStorageBuckets.__key_warning(key)
2615
+ return super().__getitem__(key)
2616
+
2617
+ def get(self, key: str, default = None) -> Any:
2618
+ InsightsDatasetConfigExcludeCloudStorageBuckets.__key_warning(key)
2619
+ return super().get(key, default)
2620
+
2621
+ def __init__(__self__, *,
2622
+ cloud_storage_buckets: Sequence['outputs.InsightsDatasetConfigExcludeCloudStorageBucketsCloudStorageBucket']):
2623
+ """
2624
+ :param Sequence['InsightsDatasetConfigExcludeCloudStorageBucketsCloudStorageBucketArgs'] cloud_storage_buckets: The list of cloud storage buckets/bucket prefix regexes to exclude in the DatasetConfig.
2625
+ Structure is documented below.
2626
+ """
2627
+ pulumi.set(__self__, "cloud_storage_buckets", cloud_storage_buckets)
2628
+
2629
+ @_builtins.property
2630
+ @pulumi.getter(name="cloudStorageBuckets")
2631
+ def cloud_storage_buckets(self) -> Sequence['outputs.InsightsDatasetConfigExcludeCloudStorageBucketsCloudStorageBucket']:
2632
+ """
2633
+ The list of cloud storage buckets/bucket prefix regexes to exclude in the DatasetConfig.
2634
+ Structure is documented below.
2635
+ """
2636
+ return pulumi.get(self, "cloud_storage_buckets")
2637
+
2638
+
2639
+ @pulumi.output_type
2640
+ class InsightsDatasetConfigExcludeCloudStorageBucketsCloudStorageBucket(dict):
2641
+ @staticmethod
2642
+ def __key_warning(key: str):
2643
+ suggest = None
2644
+ if key == "bucketName":
2645
+ suggest = "bucket_name"
2646
+ elif key == "bucketPrefixRegex":
2647
+ suggest = "bucket_prefix_regex"
2648
+
2649
+ if suggest:
2650
+ pulumi.log.warn(f"Key '{key}' not found in InsightsDatasetConfigExcludeCloudStorageBucketsCloudStorageBucket. Access the value via the '{suggest}' property getter instead.")
2651
+
2652
+ def __getitem__(self, key: str) -> Any:
2653
+ InsightsDatasetConfigExcludeCloudStorageBucketsCloudStorageBucket.__key_warning(key)
2654
+ return super().__getitem__(key)
2655
+
2656
+ def get(self, key: str, default = None) -> Any:
2657
+ InsightsDatasetConfigExcludeCloudStorageBucketsCloudStorageBucket.__key_warning(key)
2658
+ return super().get(key, default)
2659
+
2660
+ def __init__(__self__, *,
2661
+ bucket_name: Optional[_builtins.str] = None,
2662
+ bucket_prefix_regex: Optional[_builtins.str] = None):
2663
+ """
2664
+ :param _builtins.str bucket_name: The list of cloud storage bucket names to exclude in the DatasetConfig.
2665
+ Exactly one of the bucket_name and bucket_prefix_regex should be specified.
2666
+ :param _builtins.str bucket_prefix_regex: The list of regex patterns for bucket names matching the regex.
2667
+ Regex should follow the syntax specified in google/re2 on GitHub.
2668
+ Exactly one of the bucket_name and bucket_prefix_regex should be specified.
2669
+ """
2670
+ if bucket_name is not None:
2671
+ pulumi.set(__self__, "bucket_name", bucket_name)
2672
+ if bucket_prefix_regex is not None:
2673
+ pulumi.set(__self__, "bucket_prefix_regex", bucket_prefix_regex)
2674
+
2675
+ @_builtins.property
2676
+ @pulumi.getter(name="bucketName")
2677
+ def bucket_name(self) -> Optional[_builtins.str]:
2678
+ """
2679
+ The list of cloud storage bucket names to exclude in the DatasetConfig.
2680
+ Exactly one of the bucket_name and bucket_prefix_regex should be specified.
2681
+ """
2682
+ return pulumi.get(self, "bucket_name")
2683
+
2684
+ @_builtins.property
2685
+ @pulumi.getter(name="bucketPrefixRegex")
2686
+ def bucket_prefix_regex(self) -> Optional[_builtins.str]:
2687
+ """
2688
+ The list of regex patterns for bucket names matching the regex.
2689
+ Regex should follow the syntax specified in google/re2 on GitHub.
2690
+ Exactly one of the bucket_name and bucket_prefix_regex should be specified.
2691
+ """
2692
+ return pulumi.get(self, "bucket_prefix_regex")
2693
+
2694
+
2695
+ @pulumi.output_type
2696
+ class InsightsDatasetConfigExcludeCloudStorageLocations(dict):
2697
+ def __init__(__self__, *,
2698
+ locations: Sequence[_builtins.str]):
2699
+ """
2700
+ :param Sequence[_builtins.str] locations: The list of cloud storage locations to exclude in the DatasetConfig.
2701
+ """
2702
+ pulumi.set(__self__, "locations", locations)
2703
+
2704
+ @_builtins.property
2705
+ @pulumi.getter
2706
+ def locations(self) -> Sequence[_builtins.str]:
2707
+ """
2708
+ The list of cloud storage locations to exclude in the DatasetConfig.
2709
+ """
2710
+ return pulumi.get(self, "locations")
2711
+
2712
+
2713
+ @pulumi.output_type
2714
+ class InsightsDatasetConfigIdentity(dict):
2715
+ def __init__(__self__, *,
2716
+ type: _builtins.str,
2717
+ name: Optional[_builtins.str] = None):
2718
+ """
2719
+ :param _builtins.str type: Type of identity to use for the DatasetConfig.
2720
+ Possible values are: `IDENTITY_TYPE_PER_CONFIG`, `IDENTITY_TYPE_PER_PROJECT`.
2721
+ :param _builtins.str name: (Output)
2722
+ Name of the identity.
2723
+ """
2724
+ pulumi.set(__self__, "type", type)
2725
+ if name is not None:
2726
+ pulumi.set(__self__, "name", name)
2727
+
2728
+ @_builtins.property
2729
+ @pulumi.getter
2730
+ def type(self) -> _builtins.str:
2731
+ """
2732
+ Type of identity to use for the DatasetConfig.
2733
+ Possible values are: `IDENTITY_TYPE_PER_CONFIG`, `IDENTITY_TYPE_PER_PROJECT`.
2734
+ """
2735
+ return pulumi.get(self, "type")
2736
+
2737
+ @_builtins.property
2738
+ @pulumi.getter
2739
+ def name(self) -> Optional[_builtins.str]:
2740
+ """
2741
+ (Output)
2742
+ Name of the identity.
2743
+ """
2744
+ return pulumi.get(self, "name")
2745
+
2746
+
2747
+ @pulumi.output_type
2748
+ class InsightsDatasetConfigIncludeCloudStorageBuckets(dict):
2749
+ @staticmethod
2750
+ def __key_warning(key: str):
2751
+ suggest = None
2752
+ if key == "cloudStorageBuckets":
2753
+ suggest = "cloud_storage_buckets"
2754
+
2755
+ if suggest:
2756
+ pulumi.log.warn(f"Key '{key}' not found in InsightsDatasetConfigIncludeCloudStorageBuckets. Access the value via the '{suggest}' property getter instead.")
2757
+
2758
+ def __getitem__(self, key: str) -> Any:
2759
+ InsightsDatasetConfigIncludeCloudStorageBuckets.__key_warning(key)
2760
+ return super().__getitem__(key)
2761
+
2762
+ def get(self, key: str, default = None) -> Any:
2763
+ InsightsDatasetConfigIncludeCloudStorageBuckets.__key_warning(key)
2764
+ return super().get(key, default)
2765
+
2766
+ def __init__(__self__, *,
2767
+ cloud_storage_buckets: Sequence['outputs.InsightsDatasetConfigIncludeCloudStorageBucketsCloudStorageBucket']):
2768
+ """
2769
+ :param Sequence['InsightsDatasetConfigIncludeCloudStorageBucketsCloudStorageBucketArgs'] cloud_storage_buckets: The list of cloud storage buckets/bucket prefix regexes to include in the DatasetConfig.
2770
+ Structure is documented below.
2771
+ """
2772
+ pulumi.set(__self__, "cloud_storage_buckets", cloud_storage_buckets)
2773
+
2774
+ @_builtins.property
2775
+ @pulumi.getter(name="cloudStorageBuckets")
2776
+ def cloud_storage_buckets(self) -> Sequence['outputs.InsightsDatasetConfigIncludeCloudStorageBucketsCloudStorageBucket']:
2777
+ """
2778
+ The list of cloud storage buckets/bucket prefix regexes to include in the DatasetConfig.
2779
+ Structure is documented below.
2780
+ """
2781
+ return pulumi.get(self, "cloud_storage_buckets")
2782
+
2783
+
2784
+ @pulumi.output_type
2785
+ class InsightsDatasetConfigIncludeCloudStorageBucketsCloudStorageBucket(dict):
2786
+ @staticmethod
2787
+ def __key_warning(key: str):
2788
+ suggest = None
2789
+ if key == "bucketName":
2790
+ suggest = "bucket_name"
2791
+ elif key == "bucketPrefixRegex":
2792
+ suggest = "bucket_prefix_regex"
2793
+
2794
+ if suggest:
2795
+ pulumi.log.warn(f"Key '{key}' not found in InsightsDatasetConfigIncludeCloudStorageBucketsCloudStorageBucket. Access the value via the '{suggest}' property getter instead.")
2796
+
2797
+ def __getitem__(self, key: str) -> Any:
2798
+ InsightsDatasetConfigIncludeCloudStorageBucketsCloudStorageBucket.__key_warning(key)
2799
+ return super().__getitem__(key)
2800
+
2801
+ def get(self, key: str, default = None) -> Any:
2802
+ InsightsDatasetConfigIncludeCloudStorageBucketsCloudStorageBucket.__key_warning(key)
2803
+ return super().get(key, default)
2804
+
2805
+ def __init__(__self__, *,
2806
+ bucket_name: Optional[_builtins.str] = None,
2807
+ bucket_prefix_regex: Optional[_builtins.str] = None):
2808
+ """
2809
+ :param _builtins.str bucket_name: The list of cloud storage bucket names to exclude in the DatasetConfig.
2810
+ Exactly one of the bucket_name and bucket_prefix_regex should be specified.
2811
+ :param _builtins.str bucket_prefix_regex: The list of regex patterns for bucket names matching the regex.
2812
+ Regex should follow the syntax specified in google/re2 on GitHub.
2813
+ Exactly one of the bucket_name and bucket_prefix_regex should be specified.
2814
+ """
2815
+ if bucket_name is not None:
2816
+ pulumi.set(__self__, "bucket_name", bucket_name)
2817
+ if bucket_prefix_regex is not None:
2818
+ pulumi.set(__self__, "bucket_prefix_regex", bucket_prefix_regex)
2819
+
2820
+ @_builtins.property
2821
+ @pulumi.getter(name="bucketName")
2822
+ def bucket_name(self) -> Optional[_builtins.str]:
2823
+ """
2824
+ The list of cloud storage bucket names to exclude in the DatasetConfig.
2825
+ Exactly one of the bucket_name and bucket_prefix_regex should be specified.
2826
+ """
2827
+ return pulumi.get(self, "bucket_name")
2828
+
2829
+ @_builtins.property
2830
+ @pulumi.getter(name="bucketPrefixRegex")
2831
+ def bucket_prefix_regex(self) -> Optional[_builtins.str]:
2832
+ """
2833
+ The list of regex patterns for bucket names matching the regex.
2834
+ Regex should follow the syntax specified in google/re2 on GitHub.
2835
+ Exactly one of the bucket_name and bucket_prefix_regex should be specified.
2836
+ """
2837
+ return pulumi.get(self, "bucket_prefix_regex")
2838
+
2839
+
2840
+ @pulumi.output_type
2841
+ class InsightsDatasetConfigIncludeCloudStorageLocations(dict):
2842
+ def __init__(__self__, *,
2843
+ locations: Sequence[_builtins.str]):
2844
+ """
2845
+ :param Sequence[_builtins.str] locations: The list of cloud storage locations to include in the DatasetConfig.
2846
+ """
2847
+ pulumi.set(__self__, "locations", locations)
2848
+
2849
+ @_builtins.property
2850
+ @pulumi.getter
2851
+ def locations(self) -> Sequence[_builtins.str]:
2852
+ """
2853
+ The list of cloud storage locations to include in the DatasetConfig.
2854
+ """
2855
+ return pulumi.get(self, "locations")
2856
+
2857
+
2858
+ @pulumi.output_type
2859
+ class InsightsDatasetConfigLink(dict):
2860
+ def __init__(__self__, *,
2861
+ dataset: Optional[_builtins.str] = None,
2862
+ linked: Optional[_builtins.bool] = None):
2863
+ """
2864
+ :param _builtins.str dataset: (Output)
2865
+ Dataset name for the linked DatasetConfig.
2866
+ :param _builtins.bool linked: (Output)
2867
+ State of the linked DatasetConfig.
2868
+ """
2869
+ if dataset is not None:
2870
+ pulumi.set(__self__, "dataset", dataset)
2871
+ if linked is not None:
2872
+ pulumi.set(__self__, "linked", linked)
2873
+
2874
+ @_builtins.property
2875
+ @pulumi.getter
2876
+ def dataset(self) -> Optional[_builtins.str]:
2877
+ """
2878
+ (Output)
2879
+ Dataset name for the linked DatasetConfig.
2880
+ """
2881
+ return pulumi.get(self, "dataset")
2882
+
2883
+ @_builtins.property
2884
+ @pulumi.getter
2885
+ def linked(self) -> Optional[_builtins.bool]:
2886
+ """
2887
+ (Output)
2888
+ State of the linked DatasetConfig.
2889
+ """
2890
+ return pulumi.get(self, "linked")
2891
+
2892
+
2893
+ @pulumi.output_type
2894
+ class InsightsDatasetConfigSourceFolders(dict):
2895
+ @staticmethod
2896
+ def __key_warning(key: str):
2897
+ suggest = None
2898
+ if key == "folderNumbers":
2899
+ suggest = "folder_numbers"
2900
+
2901
+ if suggest:
2902
+ pulumi.log.warn(f"Key '{key}' not found in InsightsDatasetConfigSourceFolders. Access the value via the '{suggest}' property getter instead.")
2903
+
2904
+ def __getitem__(self, key: str) -> Any:
2905
+ InsightsDatasetConfigSourceFolders.__key_warning(key)
2906
+ return super().__getitem__(key)
2907
+
2908
+ def get(self, key: str, default = None) -> Any:
2909
+ InsightsDatasetConfigSourceFolders.__key_warning(key)
2910
+ return super().get(key, default)
2911
+
2912
+ def __init__(__self__, *,
2913
+ folder_numbers: Optional[Sequence[_builtins.str]] = None):
2914
+ """
2915
+ :param Sequence[_builtins.str] folder_numbers: The list of folder numbers to include in the DatasetConfig.
2916
+ """
2917
+ if folder_numbers is not None:
2918
+ pulumi.set(__self__, "folder_numbers", folder_numbers)
2919
+
2920
+ @_builtins.property
2921
+ @pulumi.getter(name="folderNumbers")
2922
+ def folder_numbers(self) -> Optional[Sequence[_builtins.str]]:
2923
+ """
2924
+ The list of folder numbers to include in the DatasetConfig.
2925
+ """
2926
+ return pulumi.get(self, "folder_numbers")
2927
+
2928
+
2929
+ @pulumi.output_type
2930
+ class InsightsDatasetConfigSourceProjects(dict):
2931
+ @staticmethod
2932
+ def __key_warning(key: str):
2933
+ suggest = None
2934
+ if key == "projectNumbers":
2935
+ suggest = "project_numbers"
2936
+
2937
+ if suggest:
2938
+ pulumi.log.warn(f"Key '{key}' not found in InsightsDatasetConfigSourceProjects. Access the value via the '{suggest}' property getter instead.")
2939
+
2940
+ def __getitem__(self, key: str) -> Any:
2941
+ InsightsDatasetConfigSourceProjects.__key_warning(key)
2942
+ return super().__getitem__(key)
2943
+
2944
+ def get(self, key: str, default = None) -> Any:
2945
+ InsightsDatasetConfigSourceProjects.__key_warning(key)
2946
+ return super().get(key, default)
2947
+
2948
+ def __init__(__self__, *,
2949
+ project_numbers: Optional[Sequence[_builtins.str]] = None):
2950
+ """
2951
+ :param Sequence[_builtins.str] project_numbers: The list of project numbers to include in the DatasetConfig.
2952
+ """
2953
+ if project_numbers is not None:
2954
+ pulumi.set(__self__, "project_numbers", project_numbers)
2955
+
2956
+ @_builtins.property
2957
+ @pulumi.getter(name="projectNumbers")
2958
+ def project_numbers(self) -> Optional[Sequence[_builtins.str]]:
2959
+ """
2960
+ The list of project numbers to include in the DatasetConfig.
2961
+ """
2962
+ return pulumi.get(self, "project_numbers")
2963
+
2964
+
2582
2965
  @pulumi.output_type
2583
2966
  class InsightsReportConfigCsvOptions(dict):
2584
2967
  @staticmethod
@@ -6354,3 +6737,239 @@ class GetControlProjectIntelligenceConfigTrialConfigResult(dict):
6354
6737
  return pulumi.get(self, "expire_time")
6355
6738
 
6356
6739
 
6740
+ @pulumi.output_type
6741
+ class GetInsightsDatasetConfigExcludeCloudStorageBucketResult(dict):
6742
+ def __init__(__self__, *,
6743
+ cloud_storage_buckets: Sequence['outputs.GetInsightsDatasetConfigExcludeCloudStorageBucketCloudStorageBucketResult']):
6744
+ """
6745
+ :param Sequence['GetInsightsDatasetConfigExcludeCloudStorageBucketCloudStorageBucketArgs'] cloud_storage_buckets: The list of cloud storage buckets/bucket prefix regexes to exclude in the DatasetConfig.
6746
+ """
6747
+ pulumi.set(__self__, "cloud_storage_buckets", cloud_storage_buckets)
6748
+
6749
+ @_builtins.property
6750
+ @pulumi.getter(name="cloudStorageBuckets")
6751
+ def cloud_storage_buckets(self) -> Sequence['outputs.GetInsightsDatasetConfigExcludeCloudStorageBucketCloudStorageBucketResult']:
6752
+ """
6753
+ The list of cloud storage buckets/bucket prefix regexes to exclude in the DatasetConfig.
6754
+ """
6755
+ return pulumi.get(self, "cloud_storage_buckets")
6756
+
6757
+
6758
+ @pulumi.output_type
6759
+ class GetInsightsDatasetConfigExcludeCloudStorageBucketCloudStorageBucketResult(dict):
6760
+ def __init__(__self__, *,
6761
+ bucket_name: _builtins.str,
6762
+ bucket_prefix_regex: _builtins.str):
6763
+ """
6764
+ :param _builtins.str bucket_name: The list of cloud storage bucket names to exclude in the DatasetConfig.
6765
+ Exactly one of the bucket_name and bucket_prefix_regex should be specified.
6766
+ :param _builtins.str bucket_prefix_regex: The list of regex patterns for bucket names matching the regex.
6767
+ Regex should follow the syntax specified in google/re2 on GitHub.
6768
+ Exactly one of the bucket_name and bucket_prefix_regex should be specified.
6769
+ """
6770
+ pulumi.set(__self__, "bucket_name", bucket_name)
6771
+ pulumi.set(__self__, "bucket_prefix_regex", bucket_prefix_regex)
6772
+
6773
+ @_builtins.property
6774
+ @pulumi.getter(name="bucketName")
6775
+ def bucket_name(self) -> _builtins.str:
6776
+ """
6777
+ The list of cloud storage bucket names to exclude in the DatasetConfig.
6778
+ Exactly one of the bucket_name and bucket_prefix_regex should be specified.
6779
+ """
6780
+ return pulumi.get(self, "bucket_name")
6781
+
6782
+ @_builtins.property
6783
+ @pulumi.getter(name="bucketPrefixRegex")
6784
+ def bucket_prefix_regex(self) -> _builtins.str:
6785
+ """
6786
+ The list of regex patterns for bucket names matching the regex.
6787
+ Regex should follow the syntax specified in google/re2 on GitHub.
6788
+ Exactly one of the bucket_name and bucket_prefix_regex should be specified.
6789
+ """
6790
+ return pulumi.get(self, "bucket_prefix_regex")
6791
+
6792
+
6793
+ @pulumi.output_type
6794
+ class GetInsightsDatasetConfigExcludeCloudStorageLocationResult(dict):
6795
+ def __init__(__self__, *,
6796
+ locations: Sequence[_builtins.str]):
6797
+ """
6798
+ :param Sequence[_builtins.str] locations: The list of cloud storage locations to exclude in the DatasetConfig.
6799
+ """
6800
+ pulumi.set(__self__, "locations", locations)
6801
+
6802
+ @_builtins.property
6803
+ @pulumi.getter
6804
+ def locations(self) -> Sequence[_builtins.str]:
6805
+ """
6806
+ The list of cloud storage locations to exclude in the DatasetConfig.
6807
+ """
6808
+ return pulumi.get(self, "locations")
6809
+
6810
+
6811
+ @pulumi.output_type
6812
+ class GetInsightsDatasetConfigIdentityResult(dict):
6813
+ def __init__(__self__, *,
6814
+ name: _builtins.str,
6815
+ type: _builtins.str):
6816
+ """
6817
+ :param _builtins.str name: Name of the identity.
6818
+ :param _builtins.str type: Type of identity to use for the DatasetConfig. Possible values: ["IDENTITY_TYPE_PER_CONFIG", "IDENTITY_TYPE_PER_PROJECT"]
6819
+ """
6820
+ pulumi.set(__self__, "name", name)
6821
+ pulumi.set(__self__, "type", type)
6822
+
6823
+ @_builtins.property
6824
+ @pulumi.getter
6825
+ def name(self) -> _builtins.str:
6826
+ """
6827
+ Name of the identity.
6828
+ """
6829
+ return pulumi.get(self, "name")
6830
+
6831
+ @_builtins.property
6832
+ @pulumi.getter
6833
+ def type(self) -> _builtins.str:
6834
+ """
6835
+ Type of identity to use for the DatasetConfig. Possible values: ["IDENTITY_TYPE_PER_CONFIG", "IDENTITY_TYPE_PER_PROJECT"]
6836
+ """
6837
+ return pulumi.get(self, "type")
6838
+
6839
+
6840
+ @pulumi.output_type
6841
+ class GetInsightsDatasetConfigIncludeCloudStorageBucketResult(dict):
6842
+ def __init__(__self__, *,
6843
+ cloud_storage_buckets: Sequence['outputs.GetInsightsDatasetConfigIncludeCloudStorageBucketCloudStorageBucketResult']):
6844
+ """
6845
+ :param Sequence['GetInsightsDatasetConfigIncludeCloudStorageBucketCloudStorageBucketArgs'] cloud_storage_buckets: The list of cloud storage buckets/bucket prefix regexes to include in the DatasetConfig.
6846
+ """
6847
+ pulumi.set(__self__, "cloud_storage_buckets", cloud_storage_buckets)
6848
+
6849
+ @_builtins.property
6850
+ @pulumi.getter(name="cloudStorageBuckets")
6851
+ def cloud_storage_buckets(self) -> Sequence['outputs.GetInsightsDatasetConfigIncludeCloudStorageBucketCloudStorageBucketResult']:
6852
+ """
6853
+ The list of cloud storage buckets/bucket prefix regexes to include in the DatasetConfig.
6854
+ """
6855
+ return pulumi.get(self, "cloud_storage_buckets")
6856
+
6857
+
6858
+ @pulumi.output_type
6859
+ class GetInsightsDatasetConfigIncludeCloudStorageBucketCloudStorageBucketResult(dict):
6860
+ def __init__(__self__, *,
6861
+ bucket_name: _builtins.str,
6862
+ bucket_prefix_regex: _builtins.str):
6863
+ """
6864
+ :param _builtins.str bucket_name: The list of cloud storage bucket names to include in the DatasetConfig.
6865
+ Exactly one of the bucket_name and bucket_prefix_regex should be specified.
6866
+ :param _builtins.str bucket_prefix_regex: The list of regex patterns for bucket names matching the regex.
6867
+ Regex should follow the syntax specified in google/re2 on GitHub.
6868
+ Exactly one of the bucket_name and bucket_prefix_regex should be specified.
6869
+ """
6870
+ pulumi.set(__self__, "bucket_name", bucket_name)
6871
+ pulumi.set(__self__, "bucket_prefix_regex", bucket_prefix_regex)
6872
+
6873
+ @_builtins.property
6874
+ @pulumi.getter(name="bucketName")
6875
+ def bucket_name(self) -> _builtins.str:
6876
+ """
6877
+ The list of cloud storage bucket names to include in the DatasetConfig.
6878
+ Exactly one of the bucket_name and bucket_prefix_regex should be specified.
6879
+ """
6880
+ return pulumi.get(self, "bucket_name")
6881
+
6882
+ @_builtins.property
6883
+ @pulumi.getter(name="bucketPrefixRegex")
6884
+ def bucket_prefix_regex(self) -> _builtins.str:
6885
+ """
6886
+ The list of regex patterns for bucket names matching the regex.
6887
+ Regex should follow the syntax specified in google/re2 on GitHub.
6888
+ Exactly one of the bucket_name and bucket_prefix_regex should be specified.
6889
+ """
6890
+ return pulumi.get(self, "bucket_prefix_regex")
6891
+
6892
+
6893
+ @pulumi.output_type
6894
+ class GetInsightsDatasetConfigIncludeCloudStorageLocationResult(dict):
6895
+ def __init__(__self__, *,
6896
+ locations: Sequence[_builtins.str]):
6897
+ """
6898
+ :param Sequence[_builtins.str] locations: The list of cloud storage locations to include in the DatasetConfig.
6899
+ """
6900
+ pulumi.set(__self__, "locations", locations)
6901
+
6902
+ @_builtins.property
6903
+ @pulumi.getter
6904
+ def locations(self) -> Sequence[_builtins.str]:
6905
+ """
6906
+ The list of cloud storage locations to include in the DatasetConfig.
6907
+ """
6908
+ return pulumi.get(self, "locations")
6909
+
6910
+
6911
+ @pulumi.output_type
6912
+ class GetInsightsDatasetConfigLinkResult(dict):
6913
+ def __init__(__self__, *,
6914
+ dataset: _builtins.str,
6915
+ linked: _builtins.bool):
6916
+ """
6917
+ :param _builtins.str dataset: Dataset name for the linked DatasetConfig.
6918
+ :param _builtins.bool linked: State of the linked DatasetConfig.
6919
+ """
6920
+ pulumi.set(__self__, "dataset", dataset)
6921
+ pulumi.set(__self__, "linked", linked)
6922
+
6923
+ @_builtins.property
6924
+ @pulumi.getter
6925
+ def dataset(self) -> _builtins.str:
6926
+ """
6927
+ Dataset name for the linked DatasetConfig.
6928
+ """
6929
+ return pulumi.get(self, "dataset")
6930
+
6931
+ @_builtins.property
6932
+ @pulumi.getter
6933
+ def linked(self) -> _builtins.bool:
6934
+ """
6935
+ State of the linked DatasetConfig.
6936
+ """
6937
+ return pulumi.get(self, "linked")
6938
+
6939
+
6940
+ @pulumi.output_type
6941
+ class GetInsightsDatasetConfigSourceFolderResult(dict):
6942
+ def __init__(__self__, *,
6943
+ folder_numbers: Sequence[_builtins.str]):
6944
+ """
6945
+ :param Sequence[_builtins.str] folder_numbers: The list of folder numbers to include in the DatasetConfig.
6946
+ """
6947
+ pulumi.set(__self__, "folder_numbers", folder_numbers)
6948
+
6949
+ @_builtins.property
6950
+ @pulumi.getter(name="folderNumbers")
6951
+ def folder_numbers(self) -> Sequence[_builtins.str]:
6952
+ """
6953
+ The list of folder numbers to include in the DatasetConfig.
6954
+ """
6955
+ return pulumi.get(self, "folder_numbers")
6956
+
6957
+
6958
+ @pulumi.output_type
6959
+ class GetInsightsDatasetConfigSourceProjectResult(dict):
6960
+ def __init__(__self__, *,
6961
+ project_numbers: Sequence[_builtins.str]):
6962
+ """
6963
+ :param Sequence[_builtins.str] project_numbers: The list of project numbers to include in the DatasetConfig.
6964
+ """
6965
+ pulumi.set(__self__, "project_numbers", project_numbers)
6966
+
6967
+ @_builtins.property
6968
+ @pulumi.getter(name="projectNumbers")
6969
+ def project_numbers(self) -> Sequence[_builtins.str]:
6970
+ """
6971
+ The list of project numbers to include in the DatasetConfig.
6972
+ """
6973
+ return pulumi.get(self, "project_numbers")
6974
+
6975
+
@@ -12,6 +12,7 @@ from .ai_endpoint import *
12
12
  from .ai_endpoint_iam_binding import *
13
13
  from .ai_endpoint_iam_member import *
14
14
  from .ai_endpoint_iam_policy import *
15
+ from .ai_endpoint_with_model_garden_deployment import *
15
16
  from .ai_feature_group import *
16
17
  from .ai_feature_group_feature import *
17
18
  from .ai_feature_group_iam_binding import *