pulumi-gcp 8.40.0a1754721948__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.0a1754721948.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/METADATA +1 -1
  155. {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/RECORD +157 -138
  156. {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/WHEEL +0 -0
  157. {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/top_level.txt +0 -0
@@ -366,8 +366,6 @@ class Database(pulumi.CustomResource):
366
366
 
367
367
  * `{{instance}}/{{name}}`
368
368
 
369
- * `{{name}}`
370
-
371
369
  When using the `pulumi import` command, Database can be imported using one of the formats above. For example:
372
370
 
373
371
  ```sh
@@ -386,10 +384,6 @@ class Database(pulumi.CustomResource):
386
384
  $ pulumi import gcp:sql/database:Database default {{instance}}/{{name}}
387
385
  ```
388
386
 
389
- ```sh
390
- $ pulumi import gcp:sql/database:Database default {{name}}
391
- ```
392
-
393
387
  :param str resource_name: The name of the resource.
394
388
  :param pulumi.ResourceOptions opts: Options for the resource.
395
389
  :param pulumi.Input[_builtins.str] charset: The charset value. See MySQL's
@@ -477,8 +471,6 @@ class Database(pulumi.CustomResource):
477
471
 
478
472
  * `{{instance}}/{{name}}`
479
473
 
480
- * `{{name}}`
481
-
482
474
  When using the `pulumi import` command, Database can be imported using one of the formats above. For example:
483
475
 
484
476
  ```sh
@@ -497,10 +489,6 @@ class Database(pulumi.CustomResource):
497
489
  $ pulumi import gcp:sql/database:Database default {{instance}}/{{name}}
498
490
  ```
499
491
 
500
- ```sh
501
- $ pulumi import gcp:sql/database:Database default {{name}}
502
- ```
503
-
504
492
  :param str resource_name: The name of the resource.
505
493
  :param DatabaseArgs args: The arguments to use to populate this resource's properties.
506
494
  :param pulumi.ResourceOptions opts: Options for the resource.
pulumi_gcp/sql/outputs.py CHANGED
@@ -877,8 +877,8 @@ class DatabaseInstanceSettings(dict):
877
877
  :param _builtins.bool deletion_protection_enabled: Configuration to protect against accidental instance deletion.
878
878
  :param _builtins.bool disk_autoresize: Enables auto-resizing of the storage size. Defaults to `true`. Note that if `disk_size` is set, future `pulumi up` calls will attempt to delete the instance in order to resize the disk to the value specified in disk_size if it has been resized. To avoid this, ensure that `lifecycle.ignore_changes` is applied to `disk_size`.
879
879
  :param _builtins.int disk_autoresize_limit: The maximum size to which storage capacity can be automatically increased. The default value is 0, which specifies that there is no limit.
880
- :param _builtins.int disk_size: The size of data disk, in GB. Size of a running instance cannot be reduced but can be increased. The minimum value is 10GB for PD_SSD, PD_HDD and 20GB for HYPERDISK_BALANCED. Note that this value will override the resizing from `disk_autoresize` if that feature is enabled. To avoid this, set `lifecycle.ignore_changes` on this field.
881
- :param _builtins.str disk_type: The type of data disk: PD_SSD, PD_HDD, or HYPERDISK_BALANCED. Defaults to `PD_SSD`. HYPERDISK_BALANCED is preview.
880
+ :param _builtins.int disk_size: The size of data disk, in GB. Size of a running instance cannot be reduced but can be increased. The minimum value is 10GB for `PD_SSD`, `PD_HDD` and 20GB for `HYPERDISK_BALANCED`. Note that this value will override the resizing from `disk_autoresize` if that feature is enabled. To avoid this, set `lifecycle.ignore_changes` on this field.
881
+ :param _builtins.str disk_type: The type of data disk: `PD_SSD`, `PD_HDD`, or `HYPERDISK_BALANCED`. Defaults to `PD_SSD`. `HYPERDISK_BALANCED` is preview.
882
882
  :param _builtins.str edition: The edition of the instance, can be `ENTERPRISE` or `ENTERPRISE_PLUS`.
883
883
  :param _builtins.bool enable_dataplex_integration: Enables [Cloud SQL instance integration with Dataplex](https://cloud.google.com/sql/docs/mysql/dataplex-catalog-integration). MySQL, Postgres and SQL Server instances are supported for this feature. Defaults to `false`.
884
884
  :param _builtins.bool enable_google_ml_integration: Enables [Cloud SQL instances to connect to Vertex AI](https://cloud.google.com/sql/docs/postgres/integrate-cloud-sql-with-vertex-ai) and pass requests for real-time predictions and insights. Defaults to `false`.
@@ -1090,7 +1090,7 @@ class DatabaseInstanceSettings(dict):
1090
1090
  @pulumi.getter(name="diskSize")
1091
1091
  def disk_size(self) -> Optional[_builtins.int]:
1092
1092
  """
1093
- The size of data disk, in GB. Size of a running instance cannot be reduced but can be increased. The minimum value is 10GB for PD_SSD, PD_HDD and 20GB for HYPERDISK_BALANCED. Note that this value will override the resizing from `disk_autoresize` if that feature is enabled. To avoid this, set `lifecycle.ignore_changes` on this field.
1093
+ The size of data disk, in GB. Size of a running instance cannot be reduced but can be increased. The minimum value is 10GB for `PD_SSD`, `PD_HDD` and 20GB for `HYPERDISK_BALANCED`. Note that this value will override the resizing from `disk_autoresize` if that feature is enabled. To avoid this, set `lifecycle.ignore_changes` on this field.
1094
1094
  """
1095
1095
  return pulumi.get(self, "disk_size")
1096
1096
 
@@ -1098,7 +1098,7 @@ class DatabaseInstanceSettings(dict):
1098
1098
  @pulumi.getter(name="diskType")
1099
1099
  def disk_type(self) -> Optional[_builtins.str]:
1100
1100
  """
1101
- The type of data disk: PD_SSD, PD_HDD, or HYPERDISK_BALANCED. Defaults to `PD_SSD`. HYPERDISK_BALANCED is preview.
1101
+ The type of data disk: `PD_SSD`, `PD_HDD`, or `HYPERDISK_BALANCED`. Defaults to `PD_SSD`. `HYPERDISK_BALANCED` is preview.
1102
1102
  """
1103
1103
  return pulumi.get(self, "disk_type")
1104
1104
 
@@ -30,12 +30,14 @@ from .get_buckets import *
30
30
  from .get_control_folder_intelligence_config import *
31
31
  from .get_control_organization_intelligence_config import *
32
32
  from .get_control_project_intelligence_config import *
33
+ from .get_insights_dataset_config import *
33
34
  from .get_managed_folder_iam_policy import *
34
35
  from .get_object_signed_url import *
35
36
  from .get_project_service_account import *
36
37
  from .get_transfer_project_service_account import *
37
38
  from .get_transfer_project_servie_account import *
38
39
  from .hmac_key import *
40
+ from .insights_dataset_config import *
39
41
  from .insights_report_config import *
40
42
  from .managed_folder import *
41
43
  from .managed_folder_iam_binding import *
@@ -115,6 +115,26 @@ __all__ = [
115
115
  'ControlProjectIntelligenceConfigTrialConfigArgsDict',
116
116
  'DefaultObjectAccessControlProjectTeamArgs',
117
117
  'DefaultObjectAccessControlProjectTeamArgsDict',
118
+ 'InsightsDatasetConfigExcludeCloudStorageBucketsArgs',
119
+ 'InsightsDatasetConfigExcludeCloudStorageBucketsArgsDict',
120
+ 'InsightsDatasetConfigExcludeCloudStorageBucketsCloudStorageBucketArgs',
121
+ 'InsightsDatasetConfigExcludeCloudStorageBucketsCloudStorageBucketArgsDict',
122
+ 'InsightsDatasetConfigExcludeCloudStorageLocationsArgs',
123
+ 'InsightsDatasetConfigExcludeCloudStorageLocationsArgsDict',
124
+ 'InsightsDatasetConfigIdentityArgs',
125
+ 'InsightsDatasetConfigIdentityArgsDict',
126
+ 'InsightsDatasetConfigIncludeCloudStorageBucketsArgs',
127
+ 'InsightsDatasetConfigIncludeCloudStorageBucketsArgsDict',
128
+ 'InsightsDatasetConfigIncludeCloudStorageBucketsCloudStorageBucketArgs',
129
+ 'InsightsDatasetConfigIncludeCloudStorageBucketsCloudStorageBucketArgsDict',
130
+ 'InsightsDatasetConfigIncludeCloudStorageLocationsArgs',
131
+ 'InsightsDatasetConfigIncludeCloudStorageLocationsArgsDict',
132
+ 'InsightsDatasetConfigLinkArgs',
133
+ 'InsightsDatasetConfigLinkArgsDict',
134
+ 'InsightsDatasetConfigSourceFoldersArgs',
135
+ 'InsightsDatasetConfigSourceFoldersArgsDict',
136
+ 'InsightsDatasetConfigSourceProjectsArgs',
137
+ 'InsightsDatasetConfigSourceProjectsArgsDict',
118
138
  'InsightsReportConfigCsvOptionsArgs',
119
139
  'InsightsReportConfigCsvOptionsArgsDict',
120
140
  'InsightsReportConfigFrequencyOptionsArgs',
@@ -3056,6 +3076,437 @@ class DefaultObjectAccessControlProjectTeamArgs:
3056
3076
  pulumi.set(self, "team", value)
3057
3077
 
3058
3078
 
3079
+ if not MYPY:
3080
+ class InsightsDatasetConfigExcludeCloudStorageBucketsArgsDict(TypedDict):
3081
+ cloud_storage_buckets: pulumi.Input[Sequence[pulumi.Input['InsightsDatasetConfigExcludeCloudStorageBucketsCloudStorageBucketArgsDict']]]
3082
+ """
3083
+ The list of cloud storage buckets/bucket prefix regexes to exclude in the DatasetConfig.
3084
+ Structure is documented below.
3085
+ """
3086
+ elif False:
3087
+ InsightsDatasetConfigExcludeCloudStorageBucketsArgsDict: TypeAlias = Mapping[str, Any]
3088
+
3089
+ @pulumi.input_type
3090
+ class InsightsDatasetConfigExcludeCloudStorageBucketsArgs:
3091
+ def __init__(__self__, *,
3092
+ cloud_storage_buckets: pulumi.Input[Sequence[pulumi.Input['InsightsDatasetConfigExcludeCloudStorageBucketsCloudStorageBucketArgs']]]):
3093
+ """
3094
+ :param pulumi.Input[Sequence[pulumi.Input['InsightsDatasetConfigExcludeCloudStorageBucketsCloudStorageBucketArgs']]] cloud_storage_buckets: The list of cloud storage buckets/bucket prefix regexes to exclude in the DatasetConfig.
3095
+ Structure is documented below.
3096
+ """
3097
+ pulumi.set(__self__, "cloud_storage_buckets", cloud_storage_buckets)
3098
+
3099
+ @_builtins.property
3100
+ @pulumi.getter(name="cloudStorageBuckets")
3101
+ def cloud_storage_buckets(self) -> pulumi.Input[Sequence[pulumi.Input['InsightsDatasetConfigExcludeCloudStorageBucketsCloudStorageBucketArgs']]]:
3102
+ """
3103
+ The list of cloud storage buckets/bucket prefix regexes to exclude in the DatasetConfig.
3104
+ Structure is documented below.
3105
+ """
3106
+ return pulumi.get(self, "cloud_storage_buckets")
3107
+
3108
+ @cloud_storage_buckets.setter
3109
+ def cloud_storage_buckets(self, value: pulumi.Input[Sequence[pulumi.Input['InsightsDatasetConfigExcludeCloudStorageBucketsCloudStorageBucketArgs']]]):
3110
+ pulumi.set(self, "cloud_storage_buckets", value)
3111
+
3112
+
3113
+ if not MYPY:
3114
+ class InsightsDatasetConfigExcludeCloudStorageBucketsCloudStorageBucketArgsDict(TypedDict):
3115
+ bucket_name: NotRequired[pulumi.Input[_builtins.str]]
3116
+ """
3117
+ The list of cloud storage bucket names to exclude in the DatasetConfig.
3118
+ Exactly one of the bucket_name and bucket_prefix_regex should be specified.
3119
+ """
3120
+ bucket_prefix_regex: NotRequired[pulumi.Input[_builtins.str]]
3121
+ """
3122
+ The list of regex patterns for bucket names matching the regex.
3123
+ Regex should follow the syntax specified in google/re2 on GitHub.
3124
+ Exactly one of the bucket_name and bucket_prefix_regex should be specified.
3125
+ """
3126
+ elif False:
3127
+ InsightsDatasetConfigExcludeCloudStorageBucketsCloudStorageBucketArgsDict: TypeAlias = Mapping[str, Any]
3128
+
3129
+ @pulumi.input_type
3130
+ class InsightsDatasetConfigExcludeCloudStorageBucketsCloudStorageBucketArgs:
3131
+ def __init__(__self__, *,
3132
+ bucket_name: Optional[pulumi.Input[_builtins.str]] = None,
3133
+ bucket_prefix_regex: Optional[pulumi.Input[_builtins.str]] = None):
3134
+ """
3135
+ :param pulumi.Input[_builtins.str] bucket_name: The list of cloud storage bucket names to exclude in the DatasetConfig.
3136
+ Exactly one of the bucket_name and bucket_prefix_regex should be specified.
3137
+ :param pulumi.Input[_builtins.str] bucket_prefix_regex: The list of regex patterns for bucket names matching the regex.
3138
+ Regex should follow the syntax specified in google/re2 on GitHub.
3139
+ Exactly one of the bucket_name and bucket_prefix_regex should be specified.
3140
+ """
3141
+ if bucket_name is not None:
3142
+ pulumi.set(__self__, "bucket_name", bucket_name)
3143
+ if bucket_prefix_regex is not None:
3144
+ pulumi.set(__self__, "bucket_prefix_regex", bucket_prefix_regex)
3145
+
3146
+ @_builtins.property
3147
+ @pulumi.getter(name="bucketName")
3148
+ def bucket_name(self) -> Optional[pulumi.Input[_builtins.str]]:
3149
+ """
3150
+ The list of cloud storage bucket names to exclude in the DatasetConfig.
3151
+ Exactly one of the bucket_name and bucket_prefix_regex should be specified.
3152
+ """
3153
+ return pulumi.get(self, "bucket_name")
3154
+
3155
+ @bucket_name.setter
3156
+ def bucket_name(self, value: Optional[pulumi.Input[_builtins.str]]):
3157
+ pulumi.set(self, "bucket_name", value)
3158
+
3159
+ @_builtins.property
3160
+ @pulumi.getter(name="bucketPrefixRegex")
3161
+ def bucket_prefix_regex(self) -> Optional[pulumi.Input[_builtins.str]]:
3162
+ """
3163
+ The list of regex patterns for bucket names matching the regex.
3164
+ Regex should follow the syntax specified in google/re2 on GitHub.
3165
+ Exactly one of the bucket_name and bucket_prefix_regex should be specified.
3166
+ """
3167
+ return pulumi.get(self, "bucket_prefix_regex")
3168
+
3169
+ @bucket_prefix_regex.setter
3170
+ def bucket_prefix_regex(self, value: Optional[pulumi.Input[_builtins.str]]):
3171
+ pulumi.set(self, "bucket_prefix_regex", value)
3172
+
3173
+
3174
+ if not MYPY:
3175
+ class InsightsDatasetConfigExcludeCloudStorageLocationsArgsDict(TypedDict):
3176
+ locations: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]
3177
+ """
3178
+ The list of cloud storage locations to exclude in the DatasetConfig.
3179
+ """
3180
+ elif False:
3181
+ InsightsDatasetConfigExcludeCloudStorageLocationsArgsDict: TypeAlias = Mapping[str, Any]
3182
+
3183
+ @pulumi.input_type
3184
+ class InsightsDatasetConfigExcludeCloudStorageLocationsArgs:
3185
+ def __init__(__self__, *,
3186
+ locations: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
3187
+ """
3188
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] locations: The list of cloud storage locations to exclude in the DatasetConfig.
3189
+ """
3190
+ pulumi.set(__self__, "locations", locations)
3191
+
3192
+ @_builtins.property
3193
+ @pulumi.getter
3194
+ def locations(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
3195
+ """
3196
+ The list of cloud storage locations to exclude in the DatasetConfig.
3197
+ """
3198
+ return pulumi.get(self, "locations")
3199
+
3200
+ @locations.setter
3201
+ def locations(self, value: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
3202
+ pulumi.set(self, "locations", value)
3203
+
3204
+
3205
+ if not MYPY:
3206
+ class InsightsDatasetConfigIdentityArgsDict(TypedDict):
3207
+ type: pulumi.Input[_builtins.str]
3208
+ """
3209
+ Type of identity to use for the DatasetConfig.
3210
+ Possible values are: `IDENTITY_TYPE_PER_CONFIG`, `IDENTITY_TYPE_PER_PROJECT`.
3211
+ """
3212
+ name: NotRequired[pulumi.Input[_builtins.str]]
3213
+ """
3214
+ (Output)
3215
+ Name of the identity.
3216
+ """
3217
+ elif False:
3218
+ InsightsDatasetConfigIdentityArgsDict: TypeAlias = Mapping[str, Any]
3219
+
3220
+ @pulumi.input_type
3221
+ class InsightsDatasetConfigIdentityArgs:
3222
+ def __init__(__self__, *,
3223
+ type: pulumi.Input[_builtins.str],
3224
+ name: Optional[pulumi.Input[_builtins.str]] = None):
3225
+ """
3226
+ :param pulumi.Input[_builtins.str] type: Type of identity to use for the DatasetConfig.
3227
+ Possible values are: `IDENTITY_TYPE_PER_CONFIG`, `IDENTITY_TYPE_PER_PROJECT`.
3228
+ :param pulumi.Input[_builtins.str] name: (Output)
3229
+ Name of the identity.
3230
+ """
3231
+ pulumi.set(__self__, "type", type)
3232
+ if name is not None:
3233
+ pulumi.set(__self__, "name", name)
3234
+
3235
+ @_builtins.property
3236
+ @pulumi.getter
3237
+ def type(self) -> pulumi.Input[_builtins.str]:
3238
+ """
3239
+ Type of identity to use for the DatasetConfig.
3240
+ Possible values are: `IDENTITY_TYPE_PER_CONFIG`, `IDENTITY_TYPE_PER_PROJECT`.
3241
+ """
3242
+ return pulumi.get(self, "type")
3243
+
3244
+ @type.setter
3245
+ def type(self, value: pulumi.Input[_builtins.str]):
3246
+ pulumi.set(self, "type", value)
3247
+
3248
+ @_builtins.property
3249
+ @pulumi.getter
3250
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
3251
+ """
3252
+ (Output)
3253
+ Name of the identity.
3254
+ """
3255
+ return pulumi.get(self, "name")
3256
+
3257
+ @name.setter
3258
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
3259
+ pulumi.set(self, "name", value)
3260
+
3261
+
3262
+ if not MYPY:
3263
+ class InsightsDatasetConfigIncludeCloudStorageBucketsArgsDict(TypedDict):
3264
+ cloud_storage_buckets: pulumi.Input[Sequence[pulumi.Input['InsightsDatasetConfigIncludeCloudStorageBucketsCloudStorageBucketArgsDict']]]
3265
+ """
3266
+ The list of cloud storage buckets/bucket prefix regexes to include in the DatasetConfig.
3267
+ Structure is documented below.
3268
+ """
3269
+ elif False:
3270
+ InsightsDatasetConfigIncludeCloudStorageBucketsArgsDict: TypeAlias = Mapping[str, Any]
3271
+
3272
+ @pulumi.input_type
3273
+ class InsightsDatasetConfigIncludeCloudStorageBucketsArgs:
3274
+ def __init__(__self__, *,
3275
+ cloud_storage_buckets: pulumi.Input[Sequence[pulumi.Input['InsightsDatasetConfigIncludeCloudStorageBucketsCloudStorageBucketArgs']]]):
3276
+ """
3277
+ :param pulumi.Input[Sequence[pulumi.Input['InsightsDatasetConfigIncludeCloudStorageBucketsCloudStorageBucketArgs']]] cloud_storage_buckets: The list of cloud storage buckets/bucket prefix regexes to include in the DatasetConfig.
3278
+ Structure is documented below.
3279
+ """
3280
+ pulumi.set(__self__, "cloud_storage_buckets", cloud_storage_buckets)
3281
+
3282
+ @_builtins.property
3283
+ @pulumi.getter(name="cloudStorageBuckets")
3284
+ def cloud_storage_buckets(self) -> pulumi.Input[Sequence[pulumi.Input['InsightsDatasetConfigIncludeCloudStorageBucketsCloudStorageBucketArgs']]]:
3285
+ """
3286
+ The list of cloud storage buckets/bucket prefix regexes to include in the DatasetConfig.
3287
+ Structure is documented below.
3288
+ """
3289
+ return pulumi.get(self, "cloud_storage_buckets")
3290
+
3291
+ @cloud_storage_buckets.setter
3292
+ def cloud_storage_buckets(self, value: pulumi.Input[Sequence[pulumi.Input['InsightsDatasetConfigIncludeCloudStorageBucketsCloudStorageBucketArgs']]]):
3293
+ pulumi.set(self, "cloud_storage_buckets", value)
3294
+
3295
+
3296
+ if not MYPY:
3297
+ class InsightsDatasetConfigIncludeCloudStorageBucketsCloudStorageBucketArgsDict(TypedDict):
3298
+ bucket_name: NotRequired[pulumi.Input[_builtins.str]]
3299
+ """
3300
+ The list of cloud storage bucket names to exclude in the DatasetConfig.
3301
+ Exactly one of the bucket_name and bucket_prefix_regex should be specified.
3302
+ """
3303
+ bucket_prefix_regex: NotRequired[pulumi.Input[_builtins.str]]
3304
+ """
3305
+ The list of regex patterns for bucket names matching the regex.
3306
+ Regex should follow the syntax specified in google/re2 on GitHub.
3307
+ Exactly one of the bucket_name and bucket_prefix_regex should be specified.
3308
+ """
3309
+ elif False:
3310
+ InsightsDatasetConfigIncludeCloudStorageBucketsCloudStorageBucketArgsDict: TypeAlias = Mapping[str, Any]
3311
+
3312
+ @pulumi.input_type
3313
+ class InsightsDatasetConfigIncludeCloudStorageBucketsCloudStorageBucketArgs:
3314
+ def __init__(__self__, *,
3315
+ bucket_name: Optional[pulumi.Input[_builtins.str]] = None,
3316
+ bucket_prefix_regex: Optional[pulumi.Input[_builtins.str]] = None):
3317
+ """
3318
+ :param pulumi.Input[_builtins.str] bucket_name: The list of cloud storage bucket names to exclude in the DatasetConfig.
3319
+ Exactly one of the bucket_name and bucket_prefix_regex should be specified.
3320
+ :param pulumi.Input[_builtins.str] bucket_prefix_regex: The list of regex patterns for bucket names matching the regex.
3321
+ Regex should follow the syntax specified in google/re2 on GitHub.
3322
+ Exactly one of the bucket_name and bucket_prefix_regex should be specified.
3323
+ """
3324
+ if bucket_name is not None:
3325
+ pulumi.set(__self__, "bucket_name", bucket_name)
3326
+ if bucket_prefix_regex is not None:
3327
+ pulumi.set(__self__, "bucket_prefix_regex", bucket_prefix_regex)
3328
+
3329
+ @_builtins.property
3330
+ @pulumi.getter(name="bucketName")
3331
+ def bucket_name(self) -> Optional[pulumi.Input[_builtins.str]]:
3332
+ """
3333
+ The list of cloud storage bucket names to exclude in the DatasetConfig.
3334
+ Exactly one of the bucket_name and bucket_prefix_regex should be specified.
3335
+ """
3336
+ return pulumi.get(self, "bucket_name")
3337
+
3338
+ @bucket_name.setter
3339
+ def bucket_name(self, value: Optional[pulumi.Input[_builtins.str]]):
3340
+ pulumi.set(self, "bucket_name", value)
3341
+
3342
+ @_builtins.property
3343
+ @pulumi.getter(name="bucketPrefixRegex")
3344
+ def bucket_prefix_regex(self) -> Optional[pulumi.Input[_builtins.str]]:
3345
+ """
3346
+ The list of regex patterns for bucket names matching the regex.
3347
+ Regex should follow the syntax specified in google/re2 on GitHub.
3348
+ Exactly one of the bucket_name and bucket_prefix_regex should be specified.
3349
+ """
3350
+ return pulumi.get(self, "bucket_prefix_regex")
3351
+
3352
+ @bucket_prefix_regex.setter
3353
+ def bucket_prefix_regex(self, value: Optional[pulumi.Input[_builtins.str]]):
3354
+ pulumi.set(self, "bucket_prefix_regex", value)
3355
+
3356
+
3357
+ if not MYPY:
3358
+ class InsightsDatasetConfigIncludeCloudStorageLocationsArgsDict(TypedDict):
3359
+ locations: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]
3360
+ """
3361
+ The list of cloud storage locations to include in the DatasetConfig.
3362
+ """
3363
+ elif False:
3364
+ InsightsDatasetConfigIncludeCloudStorageLocationsArgsDict: TypeAlias = Mapping[str, Any]
3365
+
3366
+ @pulumi.input_type
3367
+ class InsightsDatasetConfigIncludeCloudStorageLocationsArgs:
3368
+ def __init__(__self__, *,
3369
+ locations: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
3370
+ """
3371
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] locations: The list of cloud storage locations to include in the DatasetConfig.
3372
+ """
3373
+ pulumi.set(__self__, "locations", locations)
3374
+
3375
+ @_builtins.property
3376
+ @pulumi.getter
3377
+ def locations(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
3378
+ """
3379
+ The list of cloud storage locations to include in the DatasetConfig.
3380
+ """
3381
+ return pulumi.get(self, "locations")
3382
+
3383
+ @locations.setter
3384
+ def locations(self, value: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
3385
+ pulumi.set(self, "locations", value)
3386
+
3387
+
3388
+ if not MYPY:
3389
+ class InsightsDatasetConfigLinkArgsDict(TypedDict):
3390
+ dataset: NotRequired[pulumi.Input[_builtins.str]]
3391
+ """
3392
+ (Output)
3393
+ Dataset name for the linked DatasetConfig.
3394
+ """
3395
+ linked: NotRequired[pulumi.Input[_builtins.bool]]
3396
+ """
3397
+ (Output)
3398
+ State of the linked DatasetConfig.
3399
+ """
3400
+ elif False:
3401
+ InsightsDatasetConfigLinkArgsDict: TypeAlias = Mapping[str, Any]
3402
+
3403
+ @pulumi.input_type
3404
+ class InsightsDatasetConfigLinkArgs:
3405
+ def __init__(__self__, *,
3406
+ dataset: Optional[pulumi.Input[_builtins.str]] = None,
3407
+ linked: Optional[pulumi.Input[_builtins.bool]] = None):
3408
+ """
3409
+ :param pulumi.Input[_builtins.str] dataset: (Output)
3410
+ Dataset name for the linked DatasetConfig.
3411
+ :param pulumi.Input[_builtins.bool] linked: (Output)
3412
+ State of the linked DatasetConfig.
3413
+ """
3414
+ if dataset is not None:
3415
+ pulumi.set(__self__, "dataset", dataset)
3416
+ if linked is not None:
3417
+ pulumi.set(__self__, "linked", linked)
3418
+
3419
+ @_builtins.property
3420
+ @pulumi.getter
3421
+ def dataset(self) -> Optional[pulumi.Input[_builtins.str]]:
3422
+ """
3423
+ (Output)
3424
+ Dataset name for the linked DatasetConfig.
3425
+ """
3426
+ return pulumi.get(self, "dataset")
3427
+
3428
+ @dataset.setter
3429
+ def dataset(self, value: Optional[pulumi.Input[_builtins.str]]):
3430
+ pulumi.set(self, "dataset", value)
3431
+
3432
+ @_builtins.property
3433
+ @pulumi.getter
3434
+ def linked(self) -> Optional[pulumi.Input[_builtins.bool]]:
3435
+ """
3436
+ (Output)
3437
+ State of the linked DatasetConfig.
3438
+ """
3439
+ return pulumi.get(self, "linked")
3440
+
3441
+ @linked.setter
3442
+ def linked(self, value: Optional[pulumi.Input[_builtins.bool]]):
3443
+ pulumi.set(self, "linked", value)
3444
+
3445
+
3446
+ if not MYPY:
3447
+ class InsightsDatasetConfigSourceFoldersArgsDict(TypedDict):
3448
+ folder_numbers: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
3449
+ """
3450
+ The list of folder numbers to include in the DatasetConfig.
3451
+ """
3452
+ elif False:
3453
+ InsightsDatasetConfigSourceFoldersArgsDict: TypeAlias = Mapping[str, Any]
3454
+
3455
+ @pulumi.input_type
3456
+ class InsightsDatasetConfigSourceFoldersArgs:
3457
+ def __init__(__self__, *,
3458
+ folder_numbers: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
3459
+ """
3460
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] folder_numbers: The list of folder numbers to include in the DatasetConfig.
3461
+ """
3462
+ if folder_numbers is not None:
3463
+ pulumi.set(__self__, "folder_numbers", folder_numbers)
3464
+
3465
+ @_builtins.property
3466
+ @pulumi.getter(name="folderNumbers")
3467
+ def folder_numbers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
3468
+ """
3469
+ The list of folder numbers to include in the DatasetConfig.
3470
+ """
3471
+ return pulumi.get(self, "folder_numbers")
3472
+
3473
+ @folder_numbers.setter
3474
+ def folder_numbers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
3475
+ pulumi.set(self, "folder_numbers", value)
3476
+
3477
+
3478
+ if not MYPY:
3479
+ class InsightsDatasetConfigSourceProjectsArgsDict(TypedDict):
3480
+ project_numbers: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
3481
+ """
3482
+ The list of project numbers to include in the DatasetConfig.
3483
+ """
3484
+ elif False:
3485
+ InsightsDatasetConfigSourceProjectsArgsDict: TypeAlias = Mapping[str, Any]
3486
+
3487
+ @pulumi.input_type
3488
+ class InsightsDatasetConfigSourceProjectsArgs:
3489
+ def __init__(__self__, *,
3490
+ project_numbers: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
3491
+ """
3492
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] project_numbers: The list of project numbers to include in the DatasetConfig.
3493
+ """
3494
+ if project_numbers is not None:
3495
+ pulumi.set(__self__, "project_numbers", project_numbers)
3496
+
3497
+ @_builtins.property
3498
+ @pulumi.getter(name="projectNumbers")
3499
+ def project_numbers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
3500
+ """
3501
+ The list of project numbers to include in the DatasetConfig.
3502
+ """
3503
+ return pulumi.get(self, "project_numbers")
3504
+
3505
+ @project_numbers.setter
3506
+ def project_numbers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
3507
+ pulumi.set(self, "project_numbers", value)
3508
+
3509
+
3059
3510
  if not MYPY:
3060
3511
  class InsightsReportConfigCsvOptionsArgsDict(TypedDict):
3061
3512
  delimiter: NotRequired[pulumi.Input[_builtins.str]]
@@ -64,7 +64,7 @@ class BucketArgs:
64
64
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: A map of key/value label pairs to assign to the bucket.
65
65
  :param pulumi.Input[Sequence[pulumi.Input['BucketLifecycleRuleArgs']]] lifecycle_rules: The bucket's [Lifecycle Rules](https://cloud.google.com/storage/docs/lifecycle#configuration) configuration. Multiple blocks of this type are permitted. Structure is documented below.
66
66
  :param pulumi.Input['BucketLoggingArgs'] logging: The bucket's [Access & Storage Logs](https://cloud.google.com/storage/docs/access-logs) configuration. Structure is documented below.
67
- :param pulumi.Input[_builtins.str] name: The name of the bucket.
67
+ :param pulumi.Input[_builtins.str] name: The name of the bucket. Bucket names must be in lowercase and no more than 63 characters long. You can find the complete list of bucket naming rules [here](https://cloud.google.com/storage/docs/buckets#naming).
68
68
  :param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs. If it
69
69
  is not provided, the provider project is used.
70
70
  :param pulumi.Input[_builtins.str] public_access_prevention: Prevents public access to a bucket. Acceptable values are "inherited" or "enforced". If "inherited", the bucket uses [public access prevention](https://cloud.google.com/storage/docs/public-access-prevention) only if the bucket is subject to the public access prevention organization policy constraint. Defaults to "inherited".
@@ -290,7 +290,7 @@ class BucketArgs:
290
290
  @pulumi.getter
291
291
  def name(self) -> Optional[pulumi.Input[_builtins.str]]:
292
292
  """
293
- The name of the bucket.
293
+ The name of the bucket. Bucket names must be in lowercase and no more than 63 characters long. You can find the complete list of bucket naming rules [here](https://cloud.google.com/storage/docs/buckets#naming).
294
294
  """
295
295
  return pulumi.get(self, "name")
296
296
 
@@ -474,7 +474,7 @@ class _BucketState:
474
474
 
475
475
  - - -
476
476
  :param pulumi.Input['BucketLoggingArgs'] logging: The bucket's [Access & Storage Logs](https://cloud.google.com/storage/docs/access-logs) configuration. Structure is documented below.
477
- :param pulumi.Input[_builtins.str] name: The name of the bucket.
477
+ :param pulumi.Input[_builtins.str] name: The name of the bucket. Bucket names must be in lowercase and no more than 63 characters long. You can find the complete list of bucket naming rules [here](https://cloud.google.com/storage/docs/buckets#naming).
478
478
  :param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs. If it
479
479
  is not provided, the provider project is used.
480
480
  :param pulumi.Input[_builtins.int] project_number: The project number of the project in which the resource belongs.
@@ -730,7 +730,7 @@ class _BucketState:
730
730
  @pulumi.getter
731
731
  def name(self) -> Optional[pulumi.Input[_builtins.str]]:
732
732
  """
733
- The name of the bucket.
733
+ The name of the bucket. Bucket names must be in lowercase and no more than 63 characters long. You can find the complete list of bucket naming rules [here](https://cloud.google.com/storage/docs/buckets#naming).
734
734
  """
735
735
  return pulumi.get(self, "name")
736
736
 
@@ -1136,7 +1136,7 @@ class Bucket(pulumi.CustomResource):
1136
1136
 
1137
1137
  - - -
1138
1138
  :param pulumi.Input[Union['BucketLoggingArgs', 'BucketLoggingArgsDict']] logging: The bucket's [Access & Storage Logs](https://cloud.google.com/storage/docs/access-logs) configuration. Structure is documented below.
1139
- :param pulumi.Input[_builtins.str] name: The name of the bucket.
1139
+ :param pulumi.Input[_builtins.str] name: The name of the bucket. Bucket names must be in lowercase and no more than 63 characters long. You can find the complete list of bucket naming rules [here](https://cloud.google.com/storage/docs/buckets#naming).
1140
1140
  :param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs. If it
1141
1141
  is not provided, the provider project is used.
1142
1142
  :param pulumi.Input[_builtins.str] public_access_prevention: Prevents public access to a bucket. Acceptable values are "inherited" or "enforced". If "inherited", the bucket uses [public access prevention](https://cloud.google.com/storage/docs/public-access-prevention) only if the bucket is subject to the public access prevention organization policy constraint. Defaults to "inherited".
@@ -1457,7 +1457,7 @@ class Bucket(pulumi.CustomResource):
1457
1457
 
1458
1458
  - - -
1459
1459
  :param pulumi.Input[Union['BucketLoggingArgs', 'BucketLoggingArgsDict']] logging: The bucket's [Access & Storage Logs](https://cloud.google.com/storage/docs/access-logs) configuration. Structure is documented below.
1460
- :param pulumi.Input[_builtins.str] name: The name of the bucket.
1460
+ :param pulumi.Input[_builtins.str] name: The name of the bucket. Bucket names must be in lowercase and no more than 63 characters long. You can find the complete list of bucket naming rules [here](https://cloud.google.com/storage/docs/buckets#naming).
1461
1461
  :param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs. If it
1462
1462
  is not provided, the provider project is used.
1463
1463
  :param pulumi.Input[_builtins.int] project_number: The project number of the project in which the resource belongs.
@@ -1631,7 +1631,7 @@ class Bucket(pulumi.CustomResource):
1631
1631
  @pulumi.getter
1632
1632
  def name(self) -> pulumi.Output[_builtins.str]:
1633
1633
  """
1634
- The name of the bucket.
1634
+ The name of the bucket. Bucket names must be in lowercase and no more than 63 characters long. You can find the complete list of bucket naming rules [here](https://cloud.google.com/storage/docs/buckets#naming).
1635
1635
  """
1636
1636
  return pulumi.get(self, "name")
1637
1637