pulumi-gcp 8.24.0a1743057423__py3-none-any.whl → 8.25.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 (150) hide show
  1. pulumi_gcp/__init__.py +131 -0
  2. pulumi_gcp/_inputs.py +48 -0
  3. pulumi_gcp/accesscontextmanager/_inputs.py +324 -12
  4. pulumi_gcp/accesscontextmanager/outputs.py +204 -12
  5. pulumi_gcp/accesscontextmanager/service_perimeter.py +0 -2
  6. pulumi_gcp/apigee/__init__.py +1 -0
  7. pulumi_gcp/apigee/_inputs.py +58 -0
  8. pulumi_gcp/apigee/dns_zone.py +491 -0
  9. pulumi_gcp/apigee/outputs.py +53 -0
  10. pulumi_gcp/bigquery/_inputs.py +158 -0
  11. pulumi_gcp/bigquery/outputs.py +115 -0
  12. pulumi_gcp/bigquery/reservation.py +189 -1
  13. pulumi_gcp/bigquery/reservation_assignment.py +7 -7
  14. pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +11 -7
  15. pulumi_gcp/bigtable/table.py +8 -8
  16. pulumi_gcp/chronicle/data_access_label.py +16 -0
  17. pulumi_gcp/chronicle/data_access_scope.py +16 -0
  18. pulumi_gcp/chronicle/reference_list.py +16 -0
  19. pulumi_gcp/chronicle/retrohunt.py +16 -0
  20. pulumi_gcp/chronicle/rule.py +16 -0
  21. pulumi_gcp/chronicle/rule_deployment.py +16 -0
  22. pulumi_gcp/chronicle/watchlist.py +16 -0
  23. pulumi_gcp/cloudfunctionsv2/_inputs.py +20 -0
  24. pulumi_gcp/cloudfunctionsv2/outputs.py +25 -0
  25. pulumi_gcp/cloudrunv2/_inputs.py +20 -0
  26. pulumi_gcp/cloudrunv2/outputs.py +25 -0
  27. pulumi_gcp/cloudrunv2/service.py +14 -14
  28. pulumi_gcp/compute/__init__.py +2 -0
  29. pulumi_gcp/compute/_inputs.py +2627 -61
  30. pulumi_gcp/compute/backend_service.py +121 -3
  31. pulumi_gcp/compute/get_backend_service.py +15 -4
  32. pulumi_gcp/compute/get_images.py +172 -0
  33. pulumi_gcp/compute/get_instance.py +12 -1
  34. pulumi_gcp/compute/get_region_backend_service.py +482 -0
  35. pulumi_gcp/compute/get_resource_policy.py +15 -4
  36. pulumi_gcp/compute/get_router.py +12 -1
  37. pulumi_gcp/compute/get_subnetwork.py +43 -1
  38. pulumi_gcp/compute/image.py +54 -0
  39. pulumi_gcp/compute/instance.py +47 -0
  40. pulumi_gcp/compute/instance_from_machine_image.py +94 -0
  41. pulumi_gcp/compute/instance_from_template.py +47 -0
  42. pulumi_gcp/compute/interconnect.py +14 -7
  43. pulumi_gcp/compute/outputs.py +4522 -391
  44. pulumi_gcp/compute/public_delegated_prefix.py +69 -15
  45. pulumi_gcp/compute/resource_policy.py +169 -3
  46. pulumi_gcp/compute/router.py +54 -0
  47. pulumi_gcp/compute/router_route_policy.py +16 -0
  48. pulumi_gcp/compute/subnetwork.py +35 -5
  49. pulumi_gcp/config/__init__.pyi +8 -0
  50. pulumi_gcp/config/outputs.py +27 -0
  51. pulumi_gcp/config/vars.py +16 -0
  52. pulumi_gcp/container/_inputs.py +274 -13
  53. pulumi_gcp/container/cluster.py +101 -0
  54. pulumi_gcp/container/get_cluster.py +23 -1
  55. pulumi_gcp/container/get_registry_image.py +4 -0
  56. pulumi_gcp/container/get_registry_repository.py +4 -0
  57. pulumi_gcp/container/outputs.py +305 -10
  58. pulumi_gcp/container/registry.py +4 -0
  59. pulumi_gcp/datafusion/instance.py +68 -0
  60. pulumi_gcp/dataproc/__init__.py +8 -0
  61. pulumi_gcp/dataproc/_inputs.py +219 -0
  62. pulumi_gcp/dataproc/get_metastore_database_iam_policy.py +193 -0
  63. pulumi_gcp/dataproc/get_metastore_table_iam_policy.py +210 -0
  64. pulumi_gcp/dataproc/metastore_database_iam_binding.py +848 -0
  65. pulumi_gcp/dataproc/metastore_database_iam_member.py +848 -0
  66. pulumi_gcp/dataproc/metastore_database_iam_policy.py +687 -0
  67. pulumi_gcp/dataproc/metastore_federation.py +38 -2
  68. pulumi_gcp/dataproc/metastore_table_iam_binding.py +895 -0
  69. pulumi_gcp/dataproc/metastore_table_iam_member.py +895 -0
  70. pulumi_gcp/dataproc/metastore_table_iam_policy.py +734 -0
  71. pulumi_gcp/dataproc/outputs.py +139 -0
  72. pulumi_gcp/datastream/_inputs.py +311 -94
  73. pulumi_gcp/datastream/connection_profile.py +40 -0
  74. pulumi_gcp/datastream/outputs.py +244 -51
  75. pulumi_gcp/datastream/stream.py +216 -0
  76. pulumi_gcp/discoveryengine/__init__.py +1 -0
  77. pulumi_gcp/discoveryengine/sitemap.py +504 -0
  78. pulumi_gcp/eventarc/__init__.py +1 -0
  79. pulumi_gcp/eventarc/enrollment.py +980 -0
  80. pulumi_gcp/firebase/__init__.py +1 -0
  81. pulumi_gcp/firebase/_inputs.py +484 -0
  82. pulumi_gcp/firebase/app_hosting_build.py +1232 -0
  83. pulumi_gcp/firebase/outputs.py +333 -0
  84. pulumi_gcp/identityplatform/_inputs.py +91 -0
  85. pulumi_gcp/identityplatform/outputs.py +73 -0
  86. pulumi_gcp/identityplatform/tenant.py +56 -0
  87. pulumi_gcp/lustre/__init__.py +8 -0
  88. pulumi_gcp/lustre/instance.py +983 -0
  89. pulumi_gcp/managedkafka/cluster.py +2 -2
  90. pulumi_gcp/memorystore/__init__.py +1 -0
  91. pulumi_gcp/memorystore/_inputs.py +1252 -7
  92. pulumi_gcp/memorystore/get_instance.py +45 -1
  93. pulumi_gcp/memorystore/instance.py +481 -30
  94. pulumi_gcp/memorystore/instance_desired_user_created_endpoints.py +843 -0
  95. pulumi_gcp/memorystore/outputs.py +1440 -15
  96. pulumi_gcp/networkmanagement/_inputs.py +422 -91
  97. pulumi_gcp/networkmanagement/connectivity_test.py +233 -211
  98. pulumi_gcp/networkmanagement/outputs.py +280 -61
  99. pulumi_gcp/networksecurity/_inputs.py +891 -26
  100. pulumi_gcp/networksecurity/intercept_deployment_group.py +44 -16
  101. pulumi_gcp/networksecurity/intercept_endpoint_group.py +90 -36
  102. pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +53 -8
  103. pulumi_gcp/networksecurity/mirroring_deployment_group.py +44 -16
  104. pulumi_gcp/networksecurity/mirroring_endpoint_group.py +94 -36
  105. pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +53 -8
  106. pulumi_gcp/networksecurity/outputs.py +531 -1
  107. pulumi_gcp/networksecurity/security_profile.py +8 -0
  108. pulumi_gcp/organizations/__init__.py +2 -0
  109. pulumi_gcp/organizations/get_iam_custom_role.py +198 -0
  110. pulumi_gcp/organizations/get_iam_custom_roles.py +164 -0
  111. pulumi_gcp/organizations/outputs.py +96 -0
  112. pulumi_gcp/osconfig/__init__.py +1 -0
  113. pulumi_gcp/osconfig/_inputs.py +5413 -0
  114. pulumi_gcp/osconfig/outputs.py +3962 -0
  115. pulumi_gcp/osconfig/v2_policy_orchestrator.py +971 -0
  116. pulumi_gcp/parametermanager/get_parameter.py +16 -1
  117. pulumi_gcp/parametermanager/get_parameter_version.py +19 -1
  118. pulumi_gcp/parametermanager/get_parameter_version_render.py +4 -0
  119. pulumi_gcp/parametermanager/get_parameters.py +4 -0
  120. pulumi_gcp/parametermanager/get_regional_parameter.py +4 -0
  121. pulumi_gcp/parametermanager/get_regional_parameter_version.py +4 -0
  122. pulumi_gcp/parametermanager/get_regional_parameter_version_render.py +8 -0
  123. pulumi_gcp/parametermanager/get_regional_parameters.py +4 -0
  124. pulumi_gcp/parametermanager/outputs.py +11 -0
  125. pulumi_gcp/parametermanager/parameter.py +88 -0
  126. pulumi_gcp/parametermanager/parameter_version.py +74 -0
  127. pulumi_gcp/parametermanager/regional_parameter.py +12 -0
  128. pulumi_gcp/parametermanager/regional_parameter_version.py +12 -0
  129. pulumi_gcp/provider.py +75 -0
  130. pulumi_gcp/pulumi-plugin.json +1 -1
  131. pulumi_gcp/redis/_inputs.py +136 -0
  132. pulumi_gcp/redis/cluster.py +54 -0
  133. pulumi_gcp/redis/outputs.py +114 -0
  134. pulumi_gcp/secretmanager/regional_secret_version.py +0 -16
  135. pulumi_gcp/storage/__init__.py +6 -0
  136. pulumi_gcp/storage/_inputs.py +1322 -0
  137. pulumi_gcp/storage/bucket.py +7 -7
  138. pulumi_gcp/storage/control_folder_intelligence_config.py +420 -0
  139. pulumi_gcp/storage/control_organization_intelligence_config.py +420 -0
  140. pulumi_gcp/storage/control_project_intelligence_config.py +408 -0
  141. pulumi_gcp/storage/get_bucket_object_content.py +16 -1
  142. pulumi_gcp/storage/get_control_folder_intelligence_config.py +160 -0
  143. pulumi_gcp/storage/get_control_organization_intelligence_config.py +160 -0
  144. pulumi_gcp/storage/get_control_project_intelligence_config.py +160 -0
  145. pulumi_gcp/storage/outputs.py +1553 -17
  146. pulumi_gcp/workbench/instance.py +14 -2
  147. {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.25.0.dist-info}/METADATA +1 -1
  148. {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.25.0.dist-info}/RECORD +150 -124
  149. {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.25.0.dist-info}/WHEEL +0 -0
  150. {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.25.0.dist-info}/top_level.txt +0 -0
@@ -33,6 +33,24 @@ __all__ = [
33
33
  'BucketSoftDeletePolicy',
34
34
  'BucketVersioning',
35
35
  'BucketWebsite',
36
+ 'ControlFolderIntelligenceConfigEffectiveIntelligenceConfig',
37
+ 'ControlFolderIntelligenceConfigFilter',
38
+ 'ControlFolderIntelligenceConfigFilterExcludedCloudStorageBuckets',
39
+ 'ControlFolderIntelligenceConfigFilterExcludedCloudStorageLocations',
40
+ 'ControlFolderIntelligenceConfigFilterIncludedCloudStorageBuckets',
41
+ 'ControlFolderIntelligenceConfigFilterIncludedCloudStorageLocations',
42
+ 'ControlOrganizationIntelligenceConfigEffectiveIntelligenceConfig',
43
+ 'ControlOrganizationIntelligenceConfigFilter',
44
+ 'ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageBuckets',
45
+ 'ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageLocations',
46
+ 'ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageBuckets',
47
+ 'ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageLocations',
48
+ 'ControlProjectIntelligenceConfigEffectiveIntelligenceConfig',
49
+ 'ControlProjectIntelligenceConfigFilter',
50
+ 'ControlProjectIntelligenceConfigFilterExcludedCloudStorageBuckets',
51
+ 'ControlProjectIntelligenceConfigFilterExcludedCloudStorageLocations',
52
+ 'ControlProjectIntelligenceConfigFilterIncludedCloudStorageBuckets',
53
+ 'ControlProjectIntelligenceConfigFilterIncludedCloudStorageLocations',
36
54
  'DefaultObjectAccessControlProjectTeam',
37
55
  'InsightsReportConfigCsvOptions',
38
56
  'InsightsReportConfigFrequencyOptions',
@@ -54,6 +72,7 @@ __all__ = [
54
72
  'TransferJobReplicationSpecGcsDataSource',
55
73
  'TransferJobReplicationSpecObjectConditions',
56
74
  'TransferJobReplicationSpecTransferOptions',
75
+ 'TransferJobReplicationSpecTransferOptionsMetadataOptions',
57
76
  'TransferJobSchedule',
58
77
  'TransferJobScheduleScheduleEndDate',
59
78
  'TransferJobScheduleScheduleStartDate',
@@ -71,6 +90,7 @@ __all__ = [
71
90
  'TransferJobTransferSpecPosixDataSink',
72
91
  'TransferJobTransferSpecPosixDataSource',
73
92
  'TransferJobTransferSpecTransferOptions',
93
+ 'TransferJobTransferSpecTransferOptionsMetadataOptions',
74
94
  'GetBucketAutoclassResult',
75
95
  'GetBucketCorResult',
76
96
  'GetBucketCustomPlacementConfigResult',
@@ -90,6 +110,24 @@ __all__ = [
90
110
  'GetBucketVersioningResult',
91
111
  'GetBucketWebsiteResult',
92
112
  'GetBucketsBucketResult',
113
+ 'GetControlFolderIntelligenceConfigEffectiveIntelligenceConfigResult',
114
+ 'GetControlFolderIntelligenceConfigFilterResult',
115
+ 'GetControlFolderIntelligenceConfigFilterExcludedCloudStorageBucketResult',
116
+ 'GetControlFolderIntelligenceConfigFilterExcludedCloudStorageLocationResult',
117
+ 'GetControlFolderIntelligenceConfigFilterIncludedCloudStorageBucketResult',
118
+ 'GetControlFolderIntelligenceConfigFilterIncludedCloudStorageLocationResult',
119
+ 'GetControlOrganizationIntelligenceConfigEffectiveIntelligenceConfigResult',
120
+ 'GetControlOrganizationIntelligenceConfigFilterResult',
121
+ 'GetControlOrganizationIntelligenceConfigFilterExcludedCloudStorageBucketResult',
122
+ 'GetControlOrganizationIntelligenceConfigFilterExcludedCloudStorageLocationResult',
123
+ 'GetControlOrganizationIntelligenceConfigFilterIncludedCloudStorageBucketResult',
124
+ 'GetControlOrganizationIntelligenceConfigFilterIncludedCloudStorageLocationResult',
125
+ 'GetControlProjectIntelligenceConfigEffectiveIntelligenceConfigResult',
126
+ 'GetControlProjectIntelligenceConfigFilterResult',
127
+ 'GetControlProjectIntelligenceConfigFilterExcludedCloudStorageBucketResult',
128
+ 'GetControlProjectIntelligenceConfigFilterExcludedCloudStorageLocationResult',
129
+ 'GetControlProjectIntelligenceConfigFilterIncludedCloudStorageBucketResult',
130
+ 'GetControlProjectIntelligenceConfigFilterIncludedCloudStorageLocationResult',
93
131
  ]
94
132
 
95
133
  @pulumi.output_type
@@ -1054,6 +1092,744 @@ class BucketWebsite(dict):
1054
1092
  return pulumi.get(self, "not_found_page")
1055
1093
 
1056
1094
 
1095
+ @pulumi.output_type
1096
+ class ControlFolderIntelligenceConfigEffectiveIntelligenceConfig(dict):
1097
+ @staticmethod
1098
+ def __key_warning(key: str):
1099
+ suggest = None
1100
+ if key == "effectiveEdition":
1101
+ suggest = "effective_edition"
1102
+ elif key == "intelligenceConfig":
1103
+ suggest = "intelligence_config"
1104
+
1105
+ if suggest:
1106
+ pulumi.log.warn(f"Key '{key}' not found in ControlFolderIntelligenceConfigEffectiveIntelligenceConfig. Access the value via the '{suggest}' property getter instead.")
1107
+
1108
+ def __getitem__(self, key: str) -> Any:
1109
+ ControlFolderIntelligenceConfigEffectiveIntelligenceConfig.__key_warning(key)
1110
+ return super().__getitem__(key)
1111
+
1112
+ def get(self, key: str, default = None) -> Any:
1113
+ ControlFolderIntelligenceConfigEffectiveIntelligenceConfig.__key_warning(key)
1114
+ return super().get(key, default)
1115
+
1116
+ def __init__(__self__, *,
1117
+ effective_edition: Optional[str] = None,
1118
+ intelligence_config: Optional[str] = None):
1119
+ """
1120
+ :param str effective_edition: (Output)
1121
+ The `StorageIntelligence` edition that is applicable for the resource.
1122
+ :param str intelligence_config: (Output)
1123
+ The Intelligence config resource that is applied for the target resource.
1124
+ """
1125
+ if effective_edition is not None:
1126
+ pulumi.set(__self__, "effective_edition", effective_edition)
1127
+ if intelligence_config is not None:
1128
+ pulumi.set(__self__, "intelligence_config", intelligence_config)
1129
+
1130
+ @property
1131
+ @pulumi.getter(name="effectiveEdition")
1132
+ def effective_edition(self) -> Optional[str]:
1133
+ """
1134
+ (Output)
1135
+ The `StorageIntelligence` edition that is applicable for the resource.
1136
+ """
1137
+ return pulumi.get(self, "effective_edition")
1138
+
1139
+ @property
1140
+ @pulumi.getter(name="intelligenceConfig")
1141
+ def intelligence_config(self) -> Optional[str]:
1142
+ """
1143
+ (Output)
1144
+ The Intelligence config resource that is applied for the target resource.
1145
+ """
1146
+ return pulumi.get(self, "intelligence_config")
1147
+
1148
+
1149
+ @pulumi.output_type
1150
+ class ControlFolderIntelligenceConfigFilter(dict):
1151
+ @staticmethod
1152
+ def __key_warning(key: str):
1153
+ suggest = None
1154
+ if key == "excludedCloudStorageBuckets":
1155
+ suggest = "excluded_cloud_storage_buckets"
1156
+ elif key == "excludedCloudStorageLocations":
1157
+ suggest = "excluded_cloud_storage_locations"
1158
+ elif key == "includedCloudStorageBuckets":
1159
+ suggest = "included_cloud_storage_buckets"
1160
+ elif key == "includedCloudStorageLocations":
1161
+ suggest = "included_cloud_storage_locations"
1162
+
1163
+ if suggest:
1164
+ pulumi.log.warn(f"Key '{key}' not found in ControlFolderIntelligenceConfigFilter. Access the value via the '{suggest}' property getter instead.")
1165
+
1166
+ def __getitem__(self, key: str) -> Any:
1167
+ ControlFolderIntelligenceConfigFilter.__key_warning(key)
1168
+ return super().__getitem__(key)
1169
+
1170
+ def get(self, key: str, default = None) -> Any:
1171
+ ControlFolderIntelligenceConfigFilter.__key_warning(key)
1172
+ return super().get(key, default)
1173
+
1174
+ def __init__(__self__, *,
1175
+ excluded_cloud_storage_buckets: Optional['outputs.ControlFolderIntelligenceConfigFilterExcludedCloudStorageBuckets'] = None,
1176
+ excluded_cloud_storage_locations: Optional['outputs.ControlFolderIntelligenceConfigFilterExcludedCloudStorageLocations'] = None,
1177
+ included_cloud_storage_buckets: Optional['outputs.ControlFolderIntelligenceConfigFilterIncludedCloudStorageBuckets'] = None,
1178
+ included_cloud_storage_locations: Optional['outputs.ControlFolderIntelligenceConfigFilterIncludedCloudStorageLocations'] = None):
1179
+ """
1180
+ :param 'ControlFolderIntelligenceConfigFilterExcludedCloudStorageBucketsArgs' excluded_cloud_storage_buckets: Buckets to exclude from the Storage Intelligence plan.
1181
+ Structure is documented below.
1182
+ :param 'ControlFolderIntelligenceConfigFilterExcludedCloudStorageLocationsArgs' excluded_cloud_storage_locations: Locations to exclude from the Storage Intelligence plan.
1183
+ Structure is documented below.
1184
+ :param 'ControlFolderIntelligenceConfigFilterIncludedCloudStorageBucketsArgs' included_cloud_storage_buckets: Buckets to include in the Storage Intelligence plan.
1185
+ Structure is documented below.
1186
+ :param 'ControlFolderIntelligenceConfigFilterIncludedCloudStorageLocationsArgs' included_cloud_storage_locations: Locations to include in the Storage Intelligence plan.
1187
+ Structure is documented below.
1188
+ """
1189
+ if excluded_cloud_storage_buckets is not None:
1190
+ pulumi.set(__self__, "excluded_cloud_storage_buckets", excluded_cloud_storage_buckets)
1191
+ if excluded_cloud_storage_locations is not None:
1192
+ pulumi.set(__self__, "excluded_cloud_storage_locations", excluded_cloud_storage_locations)
1193
+ if included_cloud_storage_buckets is not None:
1194
+ pulumi.set(__self__, "included_cloud_storage_buckets", included_cloud_storage_buckets)
1195
+ if included_cloud_storage_locations is not None:
1196
+ pulumi.set(__self__, "included_cloud_storage_locations", included_cloud_storage_locations)
1197
+
1198
+ @property
1199
+ @pulumi.getter(name="excludedCloudStorageBuckets")
1200
+ def excluded_cloud_storage_buckets(self) -> Optional['outputs.ControlFolderIntelligenceConfigFilterExcludedCloudStorageBuckets']:
1201
+ """
1202
+ Buckets to exclude from the Storage Intelligence plan.
1203
+ Structure is documented below.
1204
+ """
1205
+ return pulumi.get(self, "excluded_cloud_storage_buckets")
1206
+
1207
+ @property
1208
+ @pulumi.getter(name="excludedCloudStorageLocations")
1209
+ def excluded_cloud_storage_locations(self) -> Optional['outputs.ControlFolderIntelligenceConfigFilterExcludedCloudStorageLocations']:
1210
+ """
1211
+ Locations to exclude from the Storage Intelligence plan.
1212
+ Structure is documented below.
1213
+ """
1214
+ return pulumi.get(self, "excluded_cloud_storage_locations")
1215
+
1216
+ @property
1217
+ @pulumi.getter(name="includedCloudStorageBuckets")
1218
+ def included_cloud_storage_buckets(self) -> Optional['outputs.ControlFolderIntelligenceConfigFilterIncludedCloudStorageBuckets']:
1219
+ """
1220
+ Buckets to include in the Storage Intelligence plan.
1221
+ Structure is documented below.
1222
+ """
1223
+ return pulumi.get(self, "included_cloud_storage_buckets")
1224
+
1225
+ @property
1226
+ @pulumi.getter(name="includedCloudStorageLocations")
1227
+ def included_cloud_storage_locations(self) -> Optional['outputs.ControlFolderIntelligenceConfigFilterIncludedCloudStorageLocations']:
1228
+ """
1229
+ Locations to include in the Storage Intelligence plan.
1230
+ Structure is documented below.
1231
+ """
1232
+ return pulumi.get(self, "included_cloud_storage_locations")
1233
+
1234
+
1235
+ @pulumi.output_type
1236
+ class ControlFolderIntelligenceConfigFilterExcludedCloudStorageBuckets(dict):
1237
+ @staticmethod
1238
+ def __key_warning(key: str):
1239
+ suggest = None
1240
+ if key == "bucketIdRegexes":
1241
+ suggest = "bucket_id_regexes"
1242
+
1243
+ if suggest:
1244
+ pulumi.log.warn(f"Key '{key}' not found in ControlFolderIntelligenceConfigFilterExcludedCloudStorageBuckets. Access the value via the '{suggest}' property getter instead.")
1245
+
1246
+ def __getitem__(self, key: str) -> Any:
1247
+ ControlFolderIntelligenceConfigFilterExcludedCloudStorageBuckets.__key_warning(key)
1248
+ return super().__getitem__(key)
1249
+
1250
+ def get(self, key: str, default = None) -> Any:
1251
+ ControlFolderIntelligenceConfigFilterExcludedCloudStorageBuckets.__key_warning(key)
1252
+ return super().get(key, default)
1253
+
1254
+ def __init__(__self__, *,
1255
+ bucket_id_regexes: Sequence[str]):
1256
+ """
1257
+ :param Sequence[str] bucket_id_regexes: List of bucket id regexes to exclude in the storage intelligence plan.
1258
+ """
1259
+ pulumi.set(__self__, "bucket_id_regexes", bucket_id_regexes)
1260
+
1261
+ @property
1262
+ @pulumi.getter(name="bucketIdRegexes")
1263
+ def bucket_id_regexes(self) -> Sequence[str]:
1264
+ """
1265
+ List of bucket id regexes to exclude in the storage intelligence plan.
1266
+ """
1267
+ return pulumi.get(self, "bucket_id_regexes")
1268
+
1269
+
1270
+ @pulumi.output_type
1271
+ class ControlFolderIntelligenceConfigFilterExcludedCloudStorageLocations(dict):
1272
+ def __init__(__self__, *,
1273
+ locations: Sequence[str]):
1274
+ """
1275
+ :param Sequence[str] locations: List of locations.
1276
+ """
1277
+ pulumi.set(__self__, "locations", locations)
1278
+
1279
+ @property
1280
+ @pulumi.getter
1281
+ def locations(self) -> Sequence[str]:
1282
+ """
1283
+ List of locations.
1284
+ """
1285
+ return pulumi.get(self, "locations")
1286
+
1287
+
1288
+ @pulumi.output_type
1289
+ class ControlFolderIntelligenceConfigFilterIncludedCloudStorageBuckets(dict):
1290
+ @staticmethod
1291
+ def __key_warning(key: str):
1292
+ suggest = None
1293
+ if key == "bucketIdRegexes":
1294
+ suggest = "bucket_id_regexes"
1295
+
1296
+ if suggest:
1297
+ pulumi.log.warn(f"Key '{key}' not found in ControlFolderIntelligenceConfigFilterIncludedCloudStorageBuckets. Access the value via the '{suggest}' property getter instead.")
1298
+
1299
+ def __getitem__(self, key: str) -> Any:
1300
+ ControlFolderIntelligenceConfigFilterIncludedCloudStorageBuckets.__key_warning(key)
1301
+ return super().__getitem__(key)
1302
+
1303
+ def get(self, key: str, default = None) -> Any:
1304
+ ControlFolderIntelligenceConfigFilterIncludedCloudStorageBuckets.__key_warning(key)
1305
+ return super().get(key, default)
1306
+
1307
+ def __init__(__self__, *,
1308
+ bucket_id_regexes: Sequence[str]):
1309
+ """
1310
+ :param Sequence[str] bucket_id_regexes: List of bucket id regexes to exclude in the storage intelligence plan.
1311
+ """
1312
+ pulumi.set(__self__, "bucket_id_regexes", bucket_id_regexes)
1313
+
1314
+ @property
1315
+ @pulumi.getter(name="bucketIdRegexes")
1316
+ def bucket_id_regexes(self) -> Sequence[str]:
1317
+ """
1318
+ List of bucket id regexes to exclude in the storage intelligence plan.
1319
+ """
1320
+ return pulumi.get(self, "bucket_id_regexes")
1321
+
1322
+
1323
+ @pulumi.output_type
1324
+ class ControlFolderIntelligenceConfigFilterIncludedCloudStorageLocations(dict):
1325
+ def __init__(__self__, *,
1326
+ locations: Sequence[str]):
1327
+ """
1328
+ :param Sequence[str] locations: List of locations.
1329
+ """
1330
+ pulumi.set(__self__, "locations", locations)
1331
+
1332
+ @property
1333
+ @pulumi.getter
1334
+ def locations(self) -> Sequence[str]:
1335
+ """
1336
+ List of locations.
1337
+ """
1338
+ return pulumi.get(self, "locations")
1339
+
1340
+
1341
+ @pulumi.output_type
1342
+ class ControlOrganizationIntelligenceConfigEffectiveIntelligenceConfig(dict):
1343
+ @staticmethod
1344
+ def __key_warning(key: str):
1345
+ suggest = None
1346
+ if key == "effectiveEdition":
1347
+ suggest = "effective_edition"
1348
+ elif key == "intelligenceConfig":
1349
+ suggest = "intelligence_config"
1350
+
1351
+ if suggest:
1352
+ pulumi.log.warn(f"Key '{key}' not found in ControlOrganizationIntelligenceConfigEffectiveIntelligenceConfig. Access the value via the '{suggest}' property getter instead.")
1353
+
1354
+ def __getitem__(self, key: str) -> Any:
1355
+ ControlOrganizationIntelligenceConfigEffectiveIntelligenceConfig.__key_warning(key)
1356
+ return super().__getitem__(key)
1357
+
1358
+ def get(self, key: str, default = None) -> Any:
1359
+ ControlOrganizationIntelligenceConfigEffectiveIntelligenceConfig.__key_warning(key)
1360
+ return super().get(key, default)
1361
+
1362
+ def __init__(__self__, *,
1363
+ effective_edition: Optional[str] = None,
1364
+ intelligence_config: Optional[str] = None):
1365
+ """
1366
+ :param str effective_edition: (Output)
1367
+ The `StorageIntelligence` edition that is applicable for the resource.
1368
+ :param str intelligence_config: (Output)
1369
+ The Intelligence config resource that is applied for the target resource.
1370
+ """
1371
+ if effective_edition is not None:
1372
+ pulumi.set(__self__, "effective_edition", effective_edition)
1373
+ if intelligence_config is not None:
1374
+ pulumi.set(__self__, "intelligence_config", intelligence_config)
1375
+
1376
+ @property
1377
+ @pulumi.getter(name="effectiveEdition")
1378
+ def effective_edition(self) -> Optional[str]:
1379
+ """
1380
+ (Output)
1381
+ The `StorageIntelligence` edition that is applicable for the resource.
1382
+ """
1383
+ return pulumi.get(self, "effective_edition")
1384
+
1385
+ @property
1386
+ @pulumi.getter(name="intelligenceConfig")
1387
+ def intelligence_config(self) -> Optional[str]:
1388
+ """
1389
+ (Output)
1390
+ The Intelligence config resource that is applied for the target resource.
1391
+ """
1392
+ return pulumi.get(self, "intelligence_config")
1393
+
1394
+
1395
+ @pulumi.output_type
1396
+ class ControlOrganizationIntelligenceConfigFilter(dict):
1397
+ @staticmethod
1398
+ def __key_warning(key: str):
1399
+ suggest = None
1400
+ if key == "excludedCloudStorageBuckets":
1401
+ suggest = "excluded_cloud_storage_buckets"
1402
+ elif key == "excludedCloudStorageLocations":
1403
+ suggest = "excluded_cloud_storage_locations"
1404
+ elif key == "includedCloudStorageBuckets":
1405
+ suggest = "included_cloud_storage_buckets"
1406
+ elif key == "includedCloudStorageLocations":
1407
+ suggest = "included_cloud_storage_locations"
1408
+
1409
+ if suggest:
1410
+ pulumi.log.warn(f"Key '{key}' not found in ControlOrganizationIntelligenceConfigFilter. Access the value via the '{suggest}' property getter instead.")
1411
+
1412
+ def __getitem__(self, key: str) -> Any:
1413
+ ControlOrganizationIntelligenceConfigFilter.__key_warning(key)
1414
+ return super().__getitem__(key)
1415
+
1416
+ def get(self, key: str, default = None) -> Any:
1417
+ ControlOrganizationIntelligenceConfigFilter.__key_warning(key)
1418
+ return super().get(key, default)
1419
+
1420
+ def __init__(__self__, *,
1421
+ excluded_cloud_storage_buckets: Optional['outputs.ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageBuckets'] = None,
1422
+ excluded_cloud_storage_locations: Optional['outputs.ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageLocations'] = None,
1423
+ included_cloud_storage_buckets: Optional['outputs.ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageBuckets'] = None,
1424
+ included_cloud_storage_locations: Optional['outputs.ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageLocations'] = None):
1425
+ """
1426
+ :param 'ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageBucketsArgs' excluded_cloud_storage_buckets: Buckets to exclude from the Storage Intelligence plan.
1427
+ Structure is documented below.
1428
+ :param 'ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageLocationsArgs' excluded_cloud_storage_locations: Locations to exclude from the Storage Intelligence plan.
1429
+ Structure is documented below.
1430
+ :param 'ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageBucketsArgs' included_cloud_storage_buckets: Buckets to include in the Storage Intelligence plan.
1431
+ Structure is documented below.
1432
+ :param 'ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageLocationsArgs' included_cloud_storage_locations: Locations to include in the Storage Intelligence plan.
1433
+ Structure is documented below.
1434
+ """
1435
+ if excluded_cloud_storage_buckets is not None:
1436
+ pulumi.set(__self__, "excluded_cloud_storage_buckets", excluded_cloud_storage_buckets)
1437
+ if excluded_cloud_storage_locations is not None:
1438
+ pulumi.set(__self__, "excluded_cloud_storage_locations", excluded_cloud_storage_locations)
1439
+ if included_cloud_storage_buckets is not None:
1440
+ pulumi.set(__self__, "included_cloud_storage_buckets", included_cloud_storage_buckets)
1441
+ if included_cloud_storage_locations is not None:
1442
+ pulumi.set(__self__, "included_cloud_storage_locations", included_cloud_storage_locations)
1443
+
1444
+ @property
1445
+ @pulumi.getter(name="excludedCloudStorageBuckets")
1446
+ def excluded_cloud_storage_buckets(self) -> Optional['outputs.ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageBuckets']:
1447
+ """
1448
+ Buckets to exclude from the Storage Intelligence plan.
1449
+ Structure is documented below.
1450
+ """
1451
+ return pulumi.get(self, "excluded_cloud_storage_buckets")
1452
+
1453
+ @property
1454
+ @pulumi.getter(name="excludedCloudStorageLocations")
1455
+ def excluded_cloud_storage_locations(self) -> Optional['outputs.ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageLocations']:
1456
+ """
1457
+ Locations to exclude from the Storage Intelligence plan.
1458
+ Structure is documented below.
1459
+ """
1460
+ return pulumi.get(self, "excluded_cloud_storage_locations")
1461
+
1462
+ @property
1463
+ @pulumi.getter(name="includedCloudStorageBuckets")
1464
+ def included_cloud_storage_buckets(self) -> Optional['outputs.ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageBuckets']:
1465
+ """
1466
+ Buckets to include in the Storage Intelligence plan.
1467
+ Structure is documented below.
1468
+ """
1469
+ return pulumi.get(self, "included_cloud_storage_buckets")
1470
+
1471
+ @property
1472
+ @pulumi.getter(name="includedCloudStorageLocations")
1473
+ def included_cloud_storage_locations(self) -> Optional['outputs.ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageLocations']:
1474
+ """
1475
+ Locations to include in the Storage Intelligence plan.
1476
+ Structure is documented below.
1477
+ """
1478
+ return pulumi.get(self, "included_cloud_storage_locations")
1479
+
1480
+
1481
+ @pulumi.output_type
1482
+ class ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageBuckets(dict):
1483
+ @staticmethod
1484
+ def __key_warning(key: str):
1485
+ suggest = None
1486
+ if key == "bucketIdRegexes":
1487
+ suggest = "bucket_id_regexes"
1488
+
1489
+ if suggest:
1490
+ pulumi.log.warn(f"Key '{key}' not found in ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageBuckets. Access the value via the '{suggest}' property getter instead.")
1491
+
1492
+ def __getitem__(self, key: str) -> Any:
1493
+ ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageBuckets.__key_warning(key)
1494
+ return super().__getitem__(key)
1495
+
1496
+ def get(self, key: str, default = None) -> Any:
1497
+ ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageBuckets.__key_warning(key)
1498
+ return super().get(key, default)
1499
+
1500
+ def __init__(__self__, *,
1501
+ bucket_id_regexes: Sequence[str]):
1502
+ """
1503
+ :param Sequence[str] bucket_id_regexes: List of bucket id regexes to exclude in the storage intelligence plan.
1504
+ """
1505
+ pulumi.set(__self__, "bucket_id_regexes", bucket_id_regexes)
1506
+
1507
+ @property
1508
+ @pulumi.getter(name="bucketIdRegexes")
1509
+ def bucket_id_regexes(self) -> Sequence[str]:
1510
+ """
1511
+ List of bucket id regexes to exclude in the storage intelligence plan.
1512
+ """
1513
+ return pulumi.get(self, "bucket_id_regexes")
1514
+
1515
+
1516
+ @pulumi.output_type
1517
+ class ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageLocations(dict):
1518
+ def __init__(__self__, *,
1519
+ locations: Sequence[str]):
1520
+ """
1521
+ :param Sequence[str] locations: List of locations.
1522
+ """
1523
+ pulumi.set(__self__, "locations", locations)
1524
+
1525
+ @property
1526
+ @pulumi.getter
1527
+ def locations(self) -> Sequence[str]:
1528
+ """
1529
+ List of locations.
1530
+ """
1531
+ return pulumi.get(self, "locations")
1532
+
1533
+
1534
+ @pulumi.output_type
1535
+ class ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageBuckets(dict):
1536
+ @staticmethod
1537
+ def __key_warning(key: str):
1538
+ suggest = None
1539
+ if key == "bucketIdRegexes":
1540
+ suggest = "bucket_id_regexes"
1541
+
1542
+ if suggest:
1543
+ pulumi.log.warn(f"Key '{key}' not found in ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageBuckets. Access the value via the '{suggest}' property getter instead.")
1544
+
1545
+ def __getitem__(self, key: str) -> Any:
1546
+ ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageBuckets.__key_warning(key)
1547
+ return super().__getitem__(key)
1548
+
1549
+ def get(self, key: str, default = None) -> Any:
1550
+ ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageBuckets.__key_warning(key)
1551
+ return super().get(key, default)
1552
+
1553
+ def __init__(__self__, *,
1554
+ bucket_id_regexes: Sequence[str]):
1555
+ """
1556
+ :param Sequence[str] bucket_id_regexes: List of bucket id regexes to exclude in the storage intelligence plan.
1557
+ """
1558
+ pulumi.set(__self__, "bucket_id_regexes", bucket_id_regexes)
1559
+
1560
+ @property
1561
+ @pulumi.getter(name="bucketIdRegexes")
1562
+ def bucket_id_regexes(self) -> Sequence[str]:
1563
+ """
1564
+ List of bucket id regexes to exclude in the storage intelligence plan.
1565
+ """
1566
+ return pulumi.get(self, "bucket_id_regexes")
1567
+
1568
+
1569
+ @pulumi.output_type
1570
+ class ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageLocations(dict):
1571
+ def __init__(__self__, *,
1572
+ locations: Sequence[str]):
1573
+ """
1574
+ :param Sequence[str] locations: List of locations.
1575
+ """
1576
+ pulumi.set(__self__, "locations", locations)
1577
+
1578
+ @property
1579
+ @pulumi.getter
1580
+ def locations(self) -> Sequence[str]:
1581
+ """
1582
+ List of locations.
1583
+ """
1584
+ return pulumi.get(self, "locations")
1585
+
1586
+
1587
+ @pulumi.output_type
1588
+ class ControlProjectIntelligenceConfigEffectiveIntelligenceConfig(dict):
1589
+ @staticmethod
1590
+ def __key_warning(key: str):
1591
+ suggest = None
1592
+ if key == "effectiveEdition":
1593
+ suggest = "effective_edition"
1594
+ elif key == "intelligenceConfig":
1595
+ suggest = "intelligence_config"
1596
+
1597
+ if suggest:
1598
+ pulumi.log.warn(f"Key '{key}' not found in ControlProjectIntelligenceConfigEffectiveIntelligenceConfig. Access the value via the '{suggest}' property getter instead.")
1599
+
1600
+ def __getitem__(self, key: str) -> Any:
1601
+ ControlProjectIntelligenceConfigEffectiveIntelligenceConfig.__key_warning(key)
1602
+ return super().__getitem__(key)
1603
+
1604
+ def get(self, key: str, default = None) -> Any:
1605
+ ControlProjectIntelligenceConfigEffectiveIntelligenceConfig.__key_warning(key)
1606
+ return super().get(key, default)
1607
+
1608
+ def __init__(__self__, *,
1609
+ effective_edition: Optional[str] = None,
1610
+ intelligence_config: Optional[str] = None):
1611
+ """
1612
+ :param str effective_edition: (Output)
1613
+ The `StorageIntelligence` edition that is applicable for the resource.
1614
+ :param str intelligence_config: (Output)
1615
+ The Intelligence config resource that is applied for the target resource.
1616
+ """
1617
+ if effective_edition is not None:
1618
+ pulumi.set(__self__, "effective_edition", effective_edition)
1619
+ if intelligence_config is not None:
1620
+ pulumi.set(__self__, "intelligence_config", intelligence_config)
1621
+
1622
+ @property
1623
+ @pulumi.getter(name="effectiveEdition")
1624
+ def effective_edition(self) -> Optional[str]:
1625
+ """
1626
+ (Output)
1627
+ The `StorageIntelligence` edition that is applicable for the resource.
1628
+ """
1629
+ return pulumi.get(self, "effective_edition")
1630
+
1631
+ @property
1632
+ @pulumi.getter(name="intelligenceConfig")
1633
+ def intelligence_config(self) -> Optional[str]:
1634
+ """
1635
+ (Output)
1636
+ The Intelligence config resource that is applied for the target resource.
1637
+ """
1638
+ return pulumi.get(self, "intelligence_config")
1639
+
1640
+
1641
+ @pulumi.output_type
1642
+ class ControlProjectIntelligenceConfigFilter(dict):
1643
+ @staticmethod
1644
+ def __key_warning(key: str):
1645
+ suggest = None
1646
+ if key == "excludedCloudStorageBuckets":
1647
+ suggest = "excluded_cloud_storage_buckets"
1648
+ elif key == "excludedCloudStorageLocations":
1649
+ suggest = "excluded_cloud_storage_locations"
1650
+ elif key == "includedCloudStorageBuckets":
1651
+ suggest = "included_cloud_storage_buckets"
1652
+ elif key == "includedCloudStorageLocations":
1653
+ suggest = "included_cloud_storage_locations"
1654
+
1655
+ if suggest:
1656
+ pulumi.log.warn(f"Key '{key}' not found in ControlProjectIntelligenceConfigFilter. Access the value via the '{suggest}' property getter instead.")
1657
+
1658
+ def __getitem__(self, key: str) -> Any:
1659
+ ControlProjectIntelligenceConfigFilter.__key_warning(key)
1660
+ return super().__getitem__(key)
1661
+
1662
+ def get(self, key: str, default = None) -> Any:
1663
+ ControlProjectIntelligenceConfigFilter.__key_warning(key)
1664
+ return super().get(key, default)
1665
+
1666
+ def __init__(__self__, *,
1667
+ excluded_cloud_storage_buckets: Optional['outputs.ControlProjectIntelligenceConfigFilterExcludedCloudStorageBuckets'] = None,
1668
+ excluded_cloud_storage_locations: Optional['outputs.ControlProjectIntelligenceConfigFilterExcludedCloudStorageLocations'] = None,
1669
+ included_cloud_storage_buckets: Optional['outputs.ControlProjectIntelligenceConfigFilterIncludedCloudStorageBuckets'] = None,
1670
+ included_cloud_storage_locations: Optional['outputs.ControlProjectIntelligenceConfigFilterIncludedCloudStorageLocations'] = None):
1671
+ """
1672
+ :param 'ControlProjectIntelligenceConfigFilterExcludedCloudStorageBucketsArgs' excluded_cloud_storage_buckets: Buckets to exclude from the Storage Intelligence plan.
1673
+ Structure is documented below.
1674
+ :param 'ControlProjectIntelligenceConfigFilterExcludedCloudStorageLocationsArgs' excluded_cloud_storage_locations: Locations to exclude from the Storage Intelligence plan.
1675
+ Structure is documented below.
1676
+ :param 'ControlProjectIntelligenceConfigFilterIncludedCloudStorageBucketsArgs' included_cloud_storage_buckets: Buckets to include in the Storage Intelligence plan.
1677
+ Structure is documented below.
1678
+ :param 'ControlProjectIntelligenceConfigFilterIncludedCloudStorageLocationsArgs' included_cloud_storage_locations: Locations to include in the Storage Intelligence plan.
1679
+ Structure is documented below.
1680
+ """
1681
+ if excluded_cloud_storage_buckets is not None:
1682
+ pulumi.set(__self__, "excluded_cloud_storage_buckets", excluded_cloud_storage_buckets)
1683
+ if excluded_cloud_storage_locations is not None:
1684
+ pulumi.set(__self__, "excluded_cloud_storage_locations", excluded_cloud_storage_locations)
1685
+ if included_cloud_storage_buckets is not None:
1686
+ pulumi.set(__self__, "included_cloud_storage_buckets", included_cloud_storage_buckets)
1687
+ if included_cloud_storage_locations is not None:
1688
+ pulumi.set(__self__, "included_cloud_storage_locations", included_cloud_storage_locations)
1689
+
1690
+ @property
1691
+ @pulumi.getter(name="excludedCloudStorageBuckets")
1692
+ def excluded_cloud_storage_buckets(self) -> Optional['outputs.ControlProjectIntelligenceConfigFilterExcludedCloudStorageBuckets']:
1693
+ """
1694
+ Buckets to exclude from the Storage Intelligence plan.
1695
+ Structure is documented below.
1696
+ """
1697
+ return pulumi.get(self, "excluded_cloud_storage_buckets")
1698
+
1699
+ @property
1700
+ @pulumi.getter(name="excludedCloudStorageLocations")
1701
+ def excluded_cloud_storage_locations(self) -> Optional['outputs.ControlProjectIntelligenceConfigFilterExcludedCloudStorageLocations']:
1702
+ """
1703
+ Locations to exclude from the Storage Intelligence plan.
1704
+ Structure is documented below.
1705
+ """
1706
+ return pulumi.get(self, "excluded_cloud_storage_locations")
1707
+
1708
+ @property
1709
+ @pulumi.getter(name="includedCloudStorageBuckets")
1710
+ def included_cloud_storage_buckets(self) -> Optional['outputs.ControlProjectIntelligenceConfigFilterIncludedCloudStorageBuckets']:
1711
+ """
1712
+ Buckets to include in the Storage Intelligence plan.
1713
+ Structure is documented below.
1714
+ """
1715
+ return pulumi.get(self, "included_cloud_storage_buckets")
1716
+
1717
+ @property
1718
+ @pulumi.getter(name="includedCloudStorageLocations")
1719
+ def included_cloud_storage_locations(self) -> Optional['outputs.ControlProjectIntelligenceConfigFilterIncludedCloudStorageLocations']:
1720
+ """
1721
+ Locations to include in the Storage Intelligence plan.
1722
+ Structure is documented below.
1723
+ """
1724
+ return pulumi.get(self, "included_cloud_storage_locations")
1725
+
1726
+
1727
+ @pulumi.output_type
1728
+ class ControlProjectIntelligenceConfigFilterExcludedCloudStorageBuckets(dict):
1729
+ @staticmethod
1730
+ def __key_warning(key: str):
1731
+ suggest = None
1732
+ if key == "bucketIdRegexes":
1733
+ suggest = "bucket_id_regexes"
1734
+
1735
+ if suggest:
1736
+ pulumi.log.warn(f"Key '{key}' not found in ControlProjectIntelligenceConfigFilterExcludedCloudStorageBuckets. Access the value via the '{suggest}' property getter instead.")
1737
+
1738
+ def __getitem__(self, key: str) -> Any:
1739
+ ControlProjectIntelligenceConfigFilterExcludedCloudStorageBuckets.__key_warning(key)
1740
+ return super().__getitem__(key)
1741
+
1742
+ def get(self, key: str, default = None) -> Any:
1743
+ ControlProjectIntelligenceConfigFilterExcludedCloudStorageBuckets.__key_warning(key)
1744
+ return super().get(key, default)
1745
+
1746
+ def __init__(__self__, *,
1747
+ bucket_id_regexes: Sequence[str]):
1748
+ """
1749
+ :param Sequence[str] bucket_id_regexes: List of bucket id regexes to exclude in the storage intelligence plan.
1750
+ """
1751
+ pulumi.set(__self__, "bucket_id_regexes", bucket_id_regexes)
1752
+
1753
+ @property
1754
+ @pulumi.getter(name="bucketIdRegexes")
1755
+ def bucket_id_regexes(self) -> Sequence[str]:
1756
+ """
1757
+ List of bucket id regexes to exclude in the storage intelligence plan.
1758
+ """
1759
+ return pulumi.get(self, "bucket_id_regexes")
1760
+
1761
+
1762
+ @pulumi.output_type
1763
+ class ControlProjectIntelligenceConfigFilterExcludedCloudStorageLocations(dict):
1764
+ def __init__(__self__, *,
1765
+ locations: Sequence[str]):
1766
+ """
1767
+ :param Sequence[str] locations: List of locations.
1768
+ """
1769
+ pulumi.set(__self__, "locations", locations)
1770
+
1771
+ @property
1772
+ @pulumi.getter
1773
+ def locations(self) -> Sequence[str]:
1774
+ """
1775
+ List of locations.
1776
+ """
1777
+ return pulumi.get(self, "locations")
1778
+
1779
+
1780
+ @pulumi.output_type
1781
+ class ControlProjectIntelligenceConfigFilterIncludedCloudStorageBuckets(dict):
1782
+ @staticmethod
1783
+ def __key_warning(key: str):
1784
+ suggest = None
1785
+ if key == "bucketIdRegexes":
1786
+ suggest = "bucket_id_regexes"
1787
+
1788
+ if suggest:
1789
+ pulumi.log.warn(f"Key '{key}' not found in ControlProjectIntelligenceConfigFilterIncludedCloudStorageBuckets. Access the value via the '{suggest}' property getter instead.")
1790
+
1791
+ def __getitem__(self, key: str) -> Any:
1792
+ ControlProjectIntelligenceConfigFilterIncludedCloudStorageBuckets.__key_warning(key)
1793
+ return super().__getitem__(key)
1794
+
1795
+ def get(self, key: str, default = None) -> Any:
1796
+ ControlProjectIntelligenceConfigFilterIncludedCloudStorageBuckets.__key_warning(key)
1797
+ return super().get(key, default)
1798
+
1799
+ def __init__(__self__, *,
1800
+ bucket_id_regexes: Sequence[str]):
1801
+ """
1802
+ :param Sequence[str] bucket_id_regexes: List of bucket id regexes to exclude in the storage intelligence plan.
1803
+ """
1804
+ pulumi.set(__self__, "bucket_id_regexes", bucket_id_regexes)
1805
+
1806
+ @property
1807
+ @pulumi.getter(name="bucketIdRegexes")
1808
+ def bucket_id_regexes(self) -> Sequence[str]:
1809
+ """
1810
+ List of bucket id regexes to exclude in the storage intelligence plan.
1811
+ """
1812
+ return pulumi.get(self, "bucket_id_regexes")
1813
+
1814
+
1815
+ @pulumi.output_type
1816
+ class ControlProjectIntelligenceConfigFilterIncludedCloudStorageLocations(dict):
1817
+ def __init__(__self__, *,
1818
+ locations: Sequence[str]):
1819
+ """
1820
+ :param Sequence[str] locations: List of locations.
1821
+ """
1822
+ pulumi.set(__self__, "locations", locations)
1823
+
1824
+ @property
1825
+ @pulumi.getter
1826
+ def locations(self) -> Sequence[str]:
1827
+ """
1828
+ List of locations.
1829
+ """
1830
+ return pulumi.get(self, "locations")
1831
+
1832
+
1057
1833
  @pulumi.output_type
1058
1834
  class DefaultObjectAccessControlProjectTeam(dict):
1059
1835
  @staticmethod
@@ -2082,6 +2858,8 @@ class TransferJobReplicationSpecTransferOptions(dict):
2082
2858
  suggest = "delete_objects_from_source_after_transfer"
2083
2859
  elif key == "deleteObjectsUniqueInSink":
2084
2860
  suggest = "delete_objects_unique_in_sink"
2861
+ elif key == "metadataOptions":
2862
+ suggest = "metadata_options"
2085
2863
  elif key == "overwriteObjectsAlreadyExistingInSink":
2086
2864
  suggest = "overwrite_objects_already_existing_in_sink"
2087
2865
  elif key == "overwriteWhen":
@@ -2101,12 +2879,14 @@ class TransferJobReplicationSpecTransferOptions(dict):
2101
2879
  def __init__(__self__, *,
2102
2880
  delete_objects_from_source_after_transfer: Optional[bool] = None,
2103
2881
  delete_objects_unique_in_sink: Optional[bool] = None,
2882
+ metadata_options: Optional['outputs.TransferJobReplicationSpecTransferOptionsMetadataOptions'] = None,
2104
2883
  overwrite_objects_already_existing_in_sink: Optional[bool] = None,
2105
2884
  overwrite_when: Optional[str] = None):
2106
2885
  """
2107
2886
  :param bool delete_objects_from_source_after_transfer: Whether objects should be deleted from the source after they are transferred to the sink. Note that this option and `delete_objects_unique_in_sink` are mutually exclusive.
2108
2887
  :param bool delete_objects_unique_in_sink: Whether objects that exist only in the sink should be deleted. Note that this option and
2109
2888
  `delete_objects_from_source_after_transfer` are mutually exclusive.
2889
+ :param 'TransferJobReplicationSpecTransferOptionsMetadataOptionsArgs' metadata_options: Specifies the metadata options for running a transfer
2110
2890
  :param bool overwrite_objects_already_existing_in_sink: Whether overwriting objects that already exist in the sink is allowed.
2111
2891
  :param str overwrite_when: When to overwrite objects that already exist in the sink. If not set, overwrite behavior is determined by `overwrite_objects_already_existing_in_sink`. Possible values: ALWAYS, DIFFERENT, NEVER.
2112
2892
  """
@@ -2114,6 +2894,8 @@ class TransferJobReplicationSpecTransferOptions(dict):
2114
2894
  pulumi.set(__self__, "delete_objects_from_source_after_transfer", delete_objects_from_source_after_transfer)
2115
2895
  if delete_objects_unique_in_sink is not None:
2116
2896
  pulumi.set(__self__, "delete_objects_unique_in_sink", delete_objects_unique_in_sink)
2897
+ if metadata_options is not None:
2898
+ pulumi.set(__self__, "metadata_options", metadata_options)
2117
2899
  if overwrite_objects_already_existing_in_sink is not None:
2118
2900
  pulumi.set(__self__, "overwrite_objects_already_existing_in_sink", overwrite_objects_already_existing_in_sink)
2119
2901
  if overwrite_when is not None:
@@ -2136,6 +2918,14 @@ class TransferJobReplicationSpecTransferOptions(dict):
2136
2918
  """
2137
2919
  return pulumi.get(self, "delete_objects_unique_in_sink")
2138
2920
 
2921
+ @property
2922
+ @pulumi.getter(name="metadataOptions")
2923
+ def metadata_options(self) -> Optional['outputs.TransferJobReplicationSpecTransferOptionsMetadataOptions']:
2924
+ """
2925
+ Specifies the metadata options for running a transfer
2926
+ """
2927
+ return pulumi.get(self, "metadata_options")
2928
+
2139
2929
  @property
2140
2930
  @pulumi.getter(name="overwriteObjectsAlreadyExistingInSink")
2141
2931
  def overwrite_objects_already_existing_in_sink(self) -> Optional[bool]:
@@ -2153,6 +2943,144 @@ class TransferJobReplicationSpecTransferOptions(dict):
2153
2943
  return pulumi.get(self, "overwrite_when")
2154
2944
 
2155
2945
 
2946
+ @pulumi.output_type
2947
+ class TransferJobReplicationSpecTransferOptionsMetadataOptions(dict):
2948
+ @staticmethod
2949
+ def __key_warning(key: str):
2950
+ suggest = None
2951
+ if key == "kmsKey":
2952
+ suggest = "kms_key"
2953
+ elif key == "storageClass":
2954
+ suggest = "storage_class"
2955
+ elif key == "temporaryHold":
2956
+ suggest = "temporary_hold"
2957
+ elif key == "timeCreated":
2958
+ suggest = "time_created"
2959
+
2960
+ if suggest:
2961
+ pulumi.log.warn(f"Key '{key}' not found in TransferJobReplicationSpecTransferOptionsMetadataOptions. Access the value via the '{suggest}' property getter instead.")
2962
+
2963
+ def __getitem__(self, key: str) -> Any:
2964
+ TransferJobReplicationSpecTransferOptionsMetadataOptions.__key_warning(key)
2965
+ return super().__getitem__(key)
2966
+
2967
+ def get(self, key: str, default = None) -> Any:
2968
+ TransferJobReplicationSpecTransferOptionsMetadataOptions.__key_warning(key)
2969
+ return super().get(key, default)
2970
+
2971
+ def __init__(__self__, *,
2972
+ acl: Optional[str] = None,
2973
+ gid: Optional[str] = None,
2974
+ kms_key: Optional[str] = None,
2975
+ mode: Optional[str] = None,
2976
+ storage_class: Optional[str] = None,
2977
+ symlink: Optional[str] = None,
2978
+ temporary_hold: Optional[str] = None,
2979
+ time_created: Optional[str] = None,
2980
+ uid: Optional[str] = None):
2981
+ """
2982
+ :param str acl: Specifies how each object's ACLs should be preserved for transfers between Google Cloud Storage buckets
2983
+ :param str gid: Specifies how each file's POSIX group ID (GID) attribute should be handled by the transfer.
2984
+ :param str kms_key: Specifies how each object's Cloud KMS customer-managed encryption key (CMEK) is preserved for transfers between Google Cloud Storage buckets
2985
+ :param str mode: Specifies how each file's mode attribute should be handled by the transfer.
2986
+ :param str storage_class: Specifies the storage class to set on objects being transferred to Google Cloud Storage buckets
2987
+ :param str symlink: Specifies how symlinks should be handled by the transfer.
2988
+ :param str temporary_hold: SSpecifies how each object's temporary hold status should be preserved for transfers between Google Cloud Storage buckets
2989
+ :param str time_created: Specifies how each object's timeCreated metadata is preserved for transfers.
2990
+ :param str uid: Specifies how each file's POSIX user ID (UID) attribute should be handled by the transfer.
2991
+ """
2992
+ if acl is not None:
2993
+ pulumi.set(__self__, "acl", acl)
2994
+ if gid is not None:
2995
+ pulumi.set(__self__, "gid", gid)
2996
+ if kms_key is not None:
2997
+ pulumi.set(__self__, "kms_key", kms_key)
2998
+ if mode is not None:
2999
+ pulumi.set(__self__, "mode", mode)
3000
+ if storage_class is not None:
3001
+ pulumi.set(__self__, "storage_class", storage_class)
3002
+ if symlink is not None:
3003
+ pulumi.set(__self__, "symlink", symlink)
3004
+ if temporary_hold is not None:
3005
+ pulumi.set(__self__, "temporary_hold", temporary_hold)
3006
+ if time_created is not None:
3007
+ pulumi.set(__self__, "time_created", time_created)
3008
+ if uid is not None:
3009
+ pulumi.set(__self__, "uid", uid)
3010
+
3011
+ @property
3012
+ @pulumi.getter
3013
+ def acl(self) -> Optional[str]:
3014
+ """
3015
+ Specifies how each object's ACLs should be preserved for transfers between Google Cloud Storage buckets
3016
+ """
3017
+ return pulumi.get(self, "acl")
3018
+
3019
+ @property
3020
+ @pulumi.getter
3021
+ def gid(self) -> Optional[str]:
3022
+ """
3023
+ Specifies how each file's POSIX group ID (GID) attribute should be handled by the transfer.
3024
+ """
3025
+ return pulumi.get(self, "gid")
3026
+
3027
+ @property
3028
+ @pulumi.getter(name="kmsKey")
3029
+ def kms_key(self) -> Optional[str]:
3030
+ """
3031
+ Specifies how each object's Cloud KMS customer-managed encryption key (CMEK) is preserved for transfers between Google Cloud Storage buckets
3032
+ """
3033
+ return pulumi.get(self, "kms_key")
3034
+
3035
+ @property
3036
+ @pulumi.getter
3037
+ def mode(self) -> Optional[str]:
3038
+ """
3039
+ Specifies how each file's mode attribute should be handled by the transfer.
3040
+ """
3041
+ return pulumi.get(self, "mode")
3042
+
3043
+ @property
3044
+ @pulumi.getter(name="storageClass")
3045
+ def storage_class(self) -> Optional[str]:
3046
+ """
3047
+ Specifies the storage class to set on objects being transferred to Google Cloud Storage buckets
3048
+ """
3049
+ return pulumi.get(self, "storage_class")
3050
+
3051
+ @property
3052
+ @pulumi.getter
3053
+ def symlink(self) -> Optional[str]:
3054
+ """
3055
+ Specifies how symlinks should be handled by the transfer.
3056
+ """
3057
+ return pulumi.get(self, "symlink")
3058
+
3059
+ @property
3060
+ @pulumi.getter(name="temporaryHold")
3061
+ def temporary_hold(self) -> Optional[str]:
3062
+ """
3063
+ SSpecifies how each object's temporary hold status should be preserved for transfers between Google Cloud Storage buckets
3064
+ """
3065
+ return pulumi.get(self, "temporary_hold")
3066
+
3067
+ @property
3068
+ @pulumi.getter(name="timeCreated")
3069
+ def time_created(self) -> Optional[str]:
3070
+ """
3071
+ Specifies how each object's timeCreated metadata is preserved for transfers.
3072
+ """
3073
+ return pulumi.get(self, "time_created")
3074
+
3075
+ @property
3076
+ @pulumi.getter
3077
+ def uid(self) -> Optional[str]:
3078
+ """
3079
+ Specifies how each file's POSIX user ID (UID) attribute should be handled by the transfer.
3080
+ """
3081
+ return pulumi.get(self, "uid")
3082
+
3083
+
2156
3084
  @pulumi.output_type
2157
3085
  class TransferJobSchedule(dict):
2158
3086
  @staticmethod
@@ -3131,6 +4059,8 @@ class TransferJobTransferSpecTransferOptions(dict):
3131
4059
  suggest = "delete_objects_from_source_after_transfer"
3132
4060
  elif key == "deleteObjectsUniqueInSink":
3133
4061
  suggest = "delete_objects_unique_in_sink"
4062
+ elif key == "metadataOptions":
4063
+ suggest = "metadata_options"
3134
4064
  elif key == "overwriteObjectsAlreadyExistingInSink":
3135
4065
  suggest = "overwrite_objects_already_existing_in_sink"
3136
4066
  elif key == "overwriteWhen":
@@ -3150,12 +4080,14 @@ class TransferJobTransferSpecTransferOptions(dict):
3150
4080
  def __init__(__self__, *,
3151
4081
  delete_objects_from_source_after_transfer: Optional[bool] = None,
3152
4082
  delete_objects_unique_in_sink: Optional[bool] = None,
4083
+ metadata_options: Optional['outputs.TransferJobTransferSpecTransferOptionsMetadataOptions'] = None,
3153
4084
  overwrite_objects_already_existing_in_sink: Optional[bool] = None,
3154
4085
  overwrite_when: Optional[str] = None):
3155
4086
  """
3156
4087
  :param bool delete_objects_from_source_after_transfer: Whether objects should be deleted from the source after they are transferred to the sink. Note that this option and `delete_objects_unique_in_sink` are mutually exclusive.
3157
4088
  :param bool delete_objects_unique_in_sink: Whether objects that exist only in the sink should be deleted. Note that this option and
3158
4089
  `delete_objects_from_source_after_transfer` are mutually exclusive.
4090
+ :param 'TransferJobTransferSpecTransferOptionsMetadataOptionsArgs' metadata_options: Specifies the metadata options for running a transfer
3159
4091
  :param bool overwrite_objects_already_existing_in_sink: Whether overwriting objects that already exist in the sink is allowed.
3160
4092
  :param str overwrite_when: When to overwrite objects that already exist in the sink. If not set, overwrite behavior is determined by `overwrite_objects_already_existing_in_sink`. Possible values: ALWAYS, DIFFERENT, NEVER.
3161
4093
  """
@@ -3163,43 +4095,191 @@ class TransferJobTransferSpecTransferOptions(dict):
3163
4095
  pulumi.set(__self__, "delete_objects_from_source_after_transfer", delete_objects_from_source_after_transfer)
3164
4096
  if delete_objects_unique_in_sink is not None:
3165
4097
  pulumi.set(__self__, "delete_objects_unique_in_sink", delete_objects_unique_in_sink)
4098
+ if metadata_options is not None:
4099
+ pulumi.set(__self__, "metadata_options", metadata_options)
3166
4100
  if overwrite_objects_already_existing_in_sink is not None:
3167
4101
  pulumi.set(__self__, "overwrite_objects_already_existing_in_sink", overwrite_objects_already_existing_in_sink)
3168
4102
  if overwrite_when is not None:
3169
4103
  pulumi.set(__self__, "overwrite_when", overwrite_when)
3170
4104
 
3171
4105
  @property
3172
- @pulumi.getter(name="deleteObjectsFromSourceAfterTransfer")
3173
- def delete_objects_from_source_after_transfer(self) -> Optional[bool]:
4106
+ @pulumi.getter(name="deleteObjectsFromSourceAfterTransfer")
4107
+ def delete_objects_from_source_after_transfer(self) -> Optional[bool]:
4108
+ """
4109
+ Whether objects should be deleted from the source after they are transferred to the sink. Note that this option and `delete_objects_unique_in_sink` are mutually exclusive.
4110
+ """
4111
+ return pulumi.get(self, "delete_objects_from_source_after_transfer")
4112
+
4113
+ @property
4114
+ @pulumi.getter(name="deleteObjectsUniqueInSink")
4115
+ def delete_objects_unique_in_sink(self) -> Optional[bool]:
4116
+ """
4117
+ Whether objects that exist only in the sink should be deleted. Note that this option and
4118
+ `delete_objects_from_source_after_transfer` are mutually exclusive.
4119
+ """
4120
+ return pulumi.get(self, "delete_objects_unique_in_sink")
4121
+
4122
+ @property
4123
+ @pulumi.getter(name="metadataOptions")
4124
+ def metadata_options(self) -> Optional['outputs.TransferJobTransferSpecTransferOptionsMetadataOptions']:
4125
+ """
4126
+ Specifies the metadata options for running a transfer
4127
+ """
4128
+ return pulumi.get(self, "metadata_options")
4129
+
4130
+ @property
4131
+ @pulumi.getter(name="overwriteObjectsAlreadyExistingInSink")
4132
+ def overwrite_objects_already_existing_in_sink(self) -> Optional[bool]:
4133
+ """
4134
+ Whether overwriting objects that already exist in the sink is allowed.
4135
+ """
4136
+ return pulumi.get(self, "overwrite_objects_already_existing_in_sink")
4137
+
4138
+ @property
4139
+ @pulumi.getter(name="overwriteWhen")
4140
+ def overwrite_when(self) -> Optional[str]:
4141
+ """
4142
+ When to overwrite objects that already exist in the sink. If not set, overwrite behavior is determined by `overwrite_objects_already_existing_in_sink`. Possible values: ALWAYS, DIFFERENT, NEVER.
4143
+ """
4144
+ return pulumi.get(self, "overwrite_when")
4145
+
4146
+
4147
+ @pulumi.output_type
4148
+ class TransferJobTransferSpecTransferOptionsMetadataOptions(dict):
4149
+ @staticmethod
4150
+ def __key_warning(key: str):
4151
+ suggest = None
4152
+ if key == "kmsKey":
4153
+ suggest = "kms_key"
4154
+ elif key == "storageClass":
4155
+ suggest = "storage_class"
4156
+ elif key == "temporaryHold":
4157
+ suggest = "temporary_hold"
4158
+ elif key == "timeCreated":
4159
+ suggest = "time_created"
4160
+
4161
+ if suggest:
4162
+ pulumi.log.warn(f"Key '{key}' not found in TransferJobTransferSpecTransferOptionsMetadataOptions. Access the value via the '{suggest}' property getter instead.")
4163
+
4164
+ def __getitem__(self, key: str) -> Any:
4165
+ TransferJobTransferSpecTransferOptionsMetadataOptions.__key_warning(key)
4166
+ return super().__getitem__(key)
4167
+
4168
+ def get(self, key: str, default = None) -> Any:
4169
+ TransferJobTransferSpecTransferOptionsMetadataOptions.__key_warning(key)
4170
+ return super().get(key, default)
4171
+
4172
+ def __init__(__self__, *,
4173
+ acl: Optional[str] = None,
4174
+ gid: Optional[str] = None,
4175
+ kms_key: Optional[str] = None,
4176
+ mode: Optional[str] = None,
4177
+ storage_class: Optional[str] = None,
4178
+ symlink: Optional[str] = None,
4179
+ temporary_hold: Optional[str] = None,
4180
+ time_created: Optional[str] = None,
4181
+ uid: Optional[str] = None):
4182
+ """
4183
+ :param str acl: Specifies how each object's ACLs should be preserved for transfers between Google Cloud Storage buckets
4184
+ :param str gid: Specifies how each file's POSIX group ID (GID) attribute should be handled by the transfer.
4185
+ :param str kms_key: Specifies how each object's Cloud KMS customer-managed encryption key (CMEK) is preserved for transfers between Google Cloud Storage buckets
4186
+ :param str mode: Specifies how each file's mode attribute should be handled by the transfer.
4187
+ :param str storage_class: Specifies the storage class to set on objects being transferred to Google Cloud Storage buckets
4188
+ :param str symlink: Specifies how symlinks should be handled by the transfer.
4189
+ :param str temporary_hold: SSpecifies how each object's temporary hold status should be preserved for transfers between Google Cloud Storage buckets
4190
+ :param str time_created: Specifies how each object's timeCreated metadata is preserved for transfers.
4191
+ :param str uid: Specifies how each file's POSIX user ID (UID) attribute should be handled by the transfer.
4192
+ """
4193
+ if acl is not None:
4194
+ pulumi.set(__self__, "acl", acl)
4195
+ if gid is not None:
4196
+ pulumi.set(__self__, "gid", gid)
4197
+ if kms_key is not None:
4198
+ pulumi.set(__self__, "kms_key", kms_key)
4199
+ if mode is not None:
4200
+ pulumi.set(__self__, "mode", mode)
4201
+ if storage_class is not None:
4202
+ pulumi.set(__self__, "storage_class", storage_class)
4203
+ if symlink is not None:
4204
+ pulumi.set(__self__, "symlink", symlink)
4205
+ if temporary_hold is not None:
4206
+ pulumi.set(__self__, "temporary_hold", temporary_hold)
4207
+ if time_created is not None:
4208
+ pulumi.set(__self__, "time_created", time_created)
4209
+ if uid is not None:
4210
+ pulumi.set(__self__, "uid", uid)
4211
+
4212
+ @property
4213
+ @pulumi.getter
4214
+ def acl(self) -> Optional[str]:
4215
+ """
4216
+ Specifies how each object's ACLs should be preserved for transfers between Google Cloud Storage buckets
4217
+ """
4218
+ return pulumi.get(self, "acl")
4219
+
4220
+ @property
4221
+ @pulumi.getter
4222
+ def gid(self) -> Optional[str]:
4223
+ """
4224
+ Specifies how each file's POSIX group ID (GID) attribute should be handled by the transfer.
4225
+ """
4226
+ return pulumi.get(self, "gid")
4227
+
4228
+ @property
4229
+ @pulumi.getter(name="kmsKey")
4230
+ def kms_key(self) -> Optional[str]:
4231
+ """
4232
+ Specifies how each object's Cloud KMS customer-managed encryption key (CMEK) is preserved for transfers between Google Cloud Storage buckets
4233
+ """
4234
+ return pulumi.get(self, "kms_key")
4235
+
4236
+ @property
4237
+ @pulumi.getter
4238
+ def mode(self) -> Optional[str]:
4239
+ """
4240
+ Specifies how each file's mode attribute should be handled by the transfer.
4241
+ """
4242
+ return pulumi.get(self, "mode")
4243
+
4244
+ @property
4245
+ @pulumi.getter(name="storageClass")
4246
+ def storage_class(self) -> Optional[str]:
4247
+ """
4248
+ Specifies the storage class to set on objects being transferred to Google Cloud Storage buckets
4249
+ """
4250
+ return pulumi.get(self, "storage_class")
4251
+
4252
+ @property
4253
+ @pulumi.getter
4254
+ def symlink(self) -> Optional[str]:
3174
4255
  """
3175
- Whether objects should be deleted from the source after they are transferred to the sink. Note that this option and `delete_objects_unique_in_sink` are mutually exclusive.
4256
+ Specifies how symlinks should be handled by the transfer.
3176
4257
  """
3177
- return pulumi.get(self, "delete_objects_from_source_after_transfer")
4258
+ return pulumi.get(self, "symlink")
3178
4259
 
3179
4260
  @property
3180
- @pulumi.getter(name="deleteObjectsUniqueInSink")
3181
- def delete_objects_unique_in_sink(self) -> Optional[bool]:
4261
+ @pulumi.getter(name="temporaryHold")
4262
+ def temporary_hold(self) -> Optional[str]:
3182
4263
  """
3183
- Whether objects that exist only in the sink should be deleted. Note that this option and
3184
- `delete_objects_from_source_after_transfer` are mutually exclusive.
4264
+ SSpecifies how each object's temporary hold status should be preserved for transfers between Google Cloud Storage buckets
3185
4265
  """
3186
- return pulumi.get(self, "delete_objects_unique_in_sink")
4266
+ return pulumi.get(self, "temporary_hold")
3187
4267
 
3188
4268
  @property
3189
- @pulumi.getter(name="overwriteObjectsAlreadyExistingInSink")
3190
- def overwrite_objects_already_existing_in_sink(self) -> Optional[bool]:
4269
+ @pulumi.getter(name="timeCreated")
4270
+ def time_created(self) -> Optional[str]:
3191
4271
  """
3192
- Whether overwriting objects that already exist in the sink is allowed.
4272
+ Specifies how each object's timeCreated metadata is preserved for transfers.
3193
4273
  """
3194
- return pulumi.get(self, "overwrite_objects_already_existing_in_sink")
4274
+ return pulumi.get(self, "time_created")
3195
4275
 
3196
4276
  @property
3197
- @pulumi.getter(name="overwriteWhen")
3198
- def overwrite_when(self) -> Optional[str]:
4277
+ @pulumi.getter
4278
+ def uid(self) -> Optional[str]:
3199
4279
  """
3200
- When to overwrite objects that already exist in the sink. If not set, overwrite behavior is determined by `overwrite_objects_already_existing_in_sink`. Possible values: ALWAYS, DIFFERENT, NEVER.
4280
+ Specifies how each file's POSIX user ID (UID) attribute should be handled by the transfer.
3201
4281
  """
3202
- return pulumi.get(self, "overwrite_when")
4282
+ return pulumi.get(self, "uid")
3203
4283
 
3204
4284
 
3205
4285
  @pulumi.output_type
@@ -3942,3 +5022,459 @@ class GetBucketsBucketResult(dict):
3942
5022
  return pulumi.get(self, "storage_class")
3943
5023
 
3944
5024
 
5025
+ @pulumi.output_type
5026
+ class GetControlFolderIntelligenceConfigEffectiveIntelligenceConfigResult(dict):
5027
+ def __init__(__self__, *,
5028
+ effective_edition: str,
5029
+ intelligence_config: str):
5030
+ """
5031
+ :param str effective_edition: The 'StorageIntelligence' edition that is applicable for the resource.
5032
+ :param str intelligence_config: The Intelligence config resource that is applied for the target resource.
5033
+ """
5034
+ pulumi.set(__self__, "effective_edition", effective_edition)
5035
+ pulumi.set(__self__, "intelligence_config", intelligence_config)
5036
+
5037
+ @property
5038
+ @pulumi.getter(name="effectiveEdition")
5039
+ def effective_edition(self) -> str:
5040
+ """
5041
+ The 'StorageIntelligence' edition that is applicable for the resource.
5042
+ """
5043
+ return pulumi.get(self, "effective_edition")
5044
+
5045
+ @property
5046
+ @pulumi.getter(name="intelligenceConfig")
5047
+ def intelligence_config(self) -> str:
5048
+ """
5049
+ The Intelligence config resource that is applied for the target resource.
5050
+ """
5051
+ return pulumi.get(self, "intelligence_config")
5052
+
5053
+
5054
+ @pulumi.output_type
5055
+ class GetControlFolderIntelligenceConfigFilterResult(dict):
5056
+ def __init__(__self__, *,
5057
+ excluded_cloud_storage_buckets: Sequence['outputs.GetControlFolderIntelligenceConfigFilterExcludedCloudStorageBucketResult'],
5058
+ excluded_cloud_storage_locations: Sequence['outputs.GetControlFolderIntelligenceConfigFilterExcludedCloudStorageLocationResult'],
5059
+ included_cloud_storage_buckets: Sequence['outputs.GetControlFolderIntelligenceConfigFilterIncludedCloudStorageBucketResult'],
5060
+ included_cloud_storage_locations: Sequence['outputs.GetControlFolderIntelligenceConfigFilterIncludedCloudStorageLocationResult']):
5061
+ """
5062
+ :param Sequence['GetControlFolderIntelligenceConfigFilterExcludedCloudStorageBucketArgs'] excluded_cloud_storage_buckets: Buckets to exclude from the Storage Intelligence plan.
5063
+ :param Sequence['GetControlFolderIntelligenceConfigFilterExcludedCloudStorageLocationArgs'] excluded_cloud_storage_locations: Locations to exclude from the Storage Intelligence plan.
5064
+ :param Sequence['GetControlFolderIntelligenceConfigFilterIncludedCloudStorageBucketArgs'] included_cloud_storage_buckets: Buckets to include in the Storage Intelligence plan.
5065
+ :param Sequence['GetControlFolderIntelligenceConfigFilterIncludedCloudStorageLocationArgs'] included_cloud_storage_locations: Locations to include in the Storage Intelligence plan.
5066
+ """
5067
+ pulumi.set(__self__, "excluded_cloud_storage_buckets", excluded_cloud_storage_buckets)
5068
+ pulumi.set(__self__, "excluded_cloud_storage_locations", excluded_cloud_storage_locations)
5069
+ pulumi.set(__self__, "included_cloud_storage_buckets", included_cloud_storage_buckets)
5070
+ pulumi.set(__self__, "included_cloud_storage_locations", included_cloud_storage_locations)
5071
+
5072
+ @property
5073
+ @pulumi.getter(name="excludedCloudStorageBuckets")
5074
+ def excluded_cloud_storage_buckets(self) -> Sequence['outputs.GetControlFolderIntelligenceConfigFilterExcludedCloudStorageBucketResult']:
5075
+ """
5076
+ Buckets to exclude from the Storage Intelligence plan.
5077
+ """
5078
+ return pulumi.get(self, "excluded_cloud_storage_buckets")
5079
+
5080
+ @property
5081
+ @pulumi.getter(name="excludedCloudStorageLocations")
5082
+ def excluded_cloud_storage_locations(self) -> Sequence['outputs.GetControlFolderIntelligenceConfigFilterExcludedCloudStorageLocationResult']:
5083
+ """
5084
+ Locations to exclude from the Storage Intelligence plan.
5085
+ """
5086
+ return pulumi.get(self, "excluded_cloud_storage_locations")
5087
+
5088
+ @property
5089
+ @pulumi.getter(name="includedCloudStorageBuckets")
5090
+ def included_cloud_storage_buckets(self) -> Sequence['outputs.GetControlFolderIntelligenceConfigFilterIncludedCloudStorageBucketResult']:
5091
+ """
5092
+ Buckets to include in the Storage Intelligence plan.
5093
+ """
5094
+ return pulumi.get(self, "included_cloud_storage_buckets")
5095
+
5096
+ @property
5097
+ @pulumi.getter(name="includedCloudStorageLocations")
5098
+ def included_cloud_storage_locations(self) -> Sequence['outputs.GetControlFolderIntelligenceConfigFilterIncludedCloudStorageLocationResult']:
5099
+ """
5100
+ Locations to include in the Storage Intelligence plan.
5101
+ """
5102
+ return pulumi.get(self, "included_cloud_storage_locations")
5103
+
5104
+
5105
+ @pulumi.output_type
5106
+ class GetControlFolderIntelligenceConfigFilterExcludedCloudStorageBucketResult(dict):
5107
+ def __init__(__self__, *,
5108
+ bucket_id_regexes: Sequence[str]):
5109
+ """
5110
+ :param Sequence[str] bucket_id_regexes: List of bucket id regexes to exclude in the storage intelligence plan.
5111
+ """
5112
+ pulumi.set(__self__, "bucket_id_regexes", bucket_id_regexes)
5113
+
5114
+ @property
5115
+ @pulumi.getter(name="bucketIdRegexes")
5116
+ def bucket_id_regexes(self) -> Sequence[str]:
5117
+ """
5118
+ List of bucket id regexes to exclude in the storage intelligence plan.
5119
+ """
5120
+ return pulumi.get(self, "bucket_id_regexes")
5121
+
5122
+
5123
+ @pulumi.output_type
5124
+ class GetControlFolderIntelligenceConfigFilterExcludedCloudStorageLocationResult(dict):
5125
+ def __init__(__self__, *,
5126
+ locations: Sequence[str]):
5127
+ """
5128
+ :param Sequence[str] locations: List of locations.
5129
+ """
5130
+ pulumi.set(__self__, "locations", locations)
5131
+
5132
+ @property
5133
+ @pulumi.getter
5134
+ def locations(self) -> Sequence[str]:
5135
+ """
5136
+ List of locations.
5137
+ """
5138
+ return pulumi.get(self, "locations")
5139
+
5140
+
5141
+ @pulumi.output_type
5142
+ class GetControlFolderIntelligenceConfigFilterIncludedCloudStorageBucketResult(dict):
5143
+ def __init__(__self__, *,
5144
+ bucket_id_regexes: Sequence[str]):
5145
+ """
5146
+ :param Sequence[str] bucket_id_regexes: List of bucket id regexes to exclude in the storage intelligence plan.
5147
+ """
5148
+ pulumi.set(__self__, "bucket_id_regexes", bucket_id_regexes)
5149
+
5150
+ @property
5151
+ @pulumi.getter(name="bucketIdRegexes")
5152
+ def bucket_id_regexes(self) -> Sequence[str]:
5153
+ """
5154
+ List of bucket id regexes to exclude in the storage intelligence plan.
5155
+ """
5156
+ return pulumi.get(self, "bucket_id_regexes")
5157
+
5158
+
5159
+ @pulumi.output_type
5160
+ class GetControlFolderIntelligenceConfigFilterIncludedCloudStorageLocationResult(dict):
5161
+ def __init__(__self__, *,
5162
+ locations: Sequence[str]):
5163
+ """
5164
+ :param Sequence[str] locations: List of locations.
5165
+ """
5166
+ pulumi.set(__self__, "locations", locations)
5167
+
5168
+ @property
5169
+ @pulumi.getter
5170
+ def locations(self) -> Sequence[str]:
5171
+ """
5172
+ List of locations.
5173
+ """
5174
+ return pulumi.get(self, "locations")
5175
+
5176
+
5177
+ @pulumi.output_type
5178
+ class GetControlOrganizationIntelligenceConfigEffectiveIntelligenceConfigResult(dict):
5179
+ def __init__(__self__, *,
5180
+ effective_edition: str,
5181
+ intelligence_config: str):
5182
+ """
5183
+ :param str effective_edition: The 'StorageIntelligence' edition that is applicable for the resource.
5184
+ :param str intelligence_config: The Intelligence config resource that is applied for the target resource.
5185
+ """
5186
+ pulumi.set(__self__, "effective_edition", effective_edition)
5187
+ pulumi.set(__self__, "intelligence_config", intelligence_config)
5188
+
5189
+ @property
5190
+ @pulumi.getter(name="effectiveEdition")
5191
+ def effective_edition(self) -> str:
5192
+ """
5193
+ The 'StorageIntelligence' edition that is applicable for the resource.
5194
+ """
5195
+ return pulumi.get(self, "effective_edition")
5196
+
5197
+ @property
5198
+ @pulumi.getter(name="intelligenceConfig")
5199
+ def intelligence_config(self) -> str:
5200
+ """
5201
+ The Intelligence config resource that is applied for the target resource.
5202
+ """
5203
+ return pulumi.get(self, "intelligence_config")
5204
+
5205
+
5206
+ @pulumi.output_type
5207
+ class GetControlOrganizationIntelligenceConfigFilterResult(dict):
5208
+ def __init__(__self__, *,
5209
+ excluded_cloud_storage_buckets: Sequence['outputs.GetControlOrganizationIntelligenceConfigFilterExcludedCloudStorageBucketResult'],
5210
+ excluded_cloud_storage_locations: Sequence['outputs.GetControlOrganizationIntelligenceConfigFilterExcludedCloudStorageLocationResult'],
5211
+ included_cloud_storage_buckets: Sequence['outputs.GetControlOrganizationIntelligenceConfigFilterIncludedCloudStorageBucketResult'],
5212
+ included_cloud_storage_locations: Sequence['outputs.GetControlOrganizationIntelligenceConfigFilterIncludedCloudStorageLocationResult']):
5213
+ """
5214
+ :param Sequence['GetControlOrganizationIntelligenceConfigFilterExcludedCloudStorageBucketArgs'] excluded_cloud_storage_buckets: Buckets to exclude from the Storage Intelligence plan.
5215
+ :param Sequence['GetControlOrganizationIntelligenceConfigFilterExcludedCloudStorageLocationArgs'] excluded_cloud_storage_locations: Locations to exclude from the Storage Intelligence plan.
5216
+ :param Sequence['GetControlOrganizationIntelligenceConfigFilterIncludedCloudStorageBucketArgs'] included_cloud_storage_buckets: Buckets to include in the Storage Intelligence plan.
5217
+ :param Sequence['GetControlOrganizationIntelligenceConfigFilterIncludedCloudStorageLocationArgs'] included_cloud_storage_locations: Locations to include in the Storage Intelligence plan.
5218
+ """
5219
+ pulumi.set(__self__, "excluded_cloud_storage_buckets", excluded_cloud_storage_buckets)
5220
+ pulumi.set(__self__, "excluded_cloud_storage_locations", excluded_cloud_storage_locations)
5221
+ pulumi.set(__self__, "included_cloud_storage_buckets", included_cloud_storage_buckets)
5222
+ pulumi.set(__self__, "included_cloud_storage_locations", included_cloud_storage_locations)
5223
+
5224
+ @property
5225
+ @pulumi.getter(name="excludedCloudStorageBuckets")
5226
+ def excluded_cloud_storage_buckets(self) -> Sequence['outputs.GetControlOrganizationIntelligenceConfigFilterExcludedCloudStorageBucketResult']:
5227
+ """
5228
+ Buckets to exclude from the Storage Intelligence plan.
5229
+ """
5230
+ return pulumi.get(self, "excluded_cloud_storage_buckets")
5231
+
5232
+ @property
5233
+ @pulumi.getter(name="excludedCloudStorageLocations")
5234
+ def excluded_cloud_storage_locations(self) -> Sequence['outputs.GetControlOrganizationIntelligenceConfigFilterExcludedCloudStorageLocationResult']:
5235
+ """
5236
+ Locations to exclude from the Storage Intelligence plan.
5237
+ """
5238
+ return pulumi.get(self, "excluded_cloud_storage_locations")
5239
+
5240
+ @property
5241
+ @pulumi.getter(name="includedCloudStorageBuckets")
5242
+ def included_cloud_storage_buckets(self) -> Sequence['outputs.GetControlOrganizationIntelligenceConfigFilterIncludedCloudStorageBucketResult']:
5243
+ """
5244
+ Buckets to include in the Storage Intelligence plan.
5245
+ """
5246
+ return pulumi.get(self, "included_cloud_storage_buckets")
5247
+
5248
+ @property
5249
+ @pulumi.getter(name="includedCloudStorageLocations")
5250
+ def included_cloud_storage_locations(self) -> Sequence['outputs.GetControlOrganizationIntelligenceConfigFilterIncludedCloudStorageLocationResult']:
5251
+ """
5252
+ Locations to include in the Storage Intelligence plan.
5253
+ """
5254
+ return pulumi.get(self, "included_cloud_storage_locations")
5255
+
5256
+
5257
+ @pulumi.output_type
5258
+ class GetControlOrganizationIntelligenceConfigFilterExcludedCloudStorageBucketResult(dict):
5259
+ def __init__(__self__, *,
5260
+ bucket_id_regexes: Sequence[str]):
5261
+ """
5262
+ :param Sequence[str] bucket_id_regexes: List of bucket id regexes to exclude in the storage intelligence plan.
5263
+ """
5264
+ pulumi.set(__self__, "bucket_id_regexes", bucket_id_regexes)
5265
+
5266
+ @property
5267
+ @pulumi.getter(name="bucketIdRegexes")
5268
+ def bucket_id_regexes(self) -> Sequence[str]:
5269
+ """
5270
+ List of bucket id regexes to exclude in the storage intelligence plan.
5271
+ """
5272
+ return pulumi.get(self, "bucket_id_regexes")
5273
+
5274
+
5275
+ @pulumi.output_type
5276
+ class GetControlOrganizationIntelligenceConfigFilterExcludedCloudStorageLocationResult(dict):
5277
+ def __init__(__self__, *,
5278
+ locations: Sequence[str]):
5279
+ """
5280
+ :param Sequence[str] locations: List of locations.
5281
+ """
5282
+ pulumi.set(__self__, "locations", locations)
5283
+
5284
+ @property
5285
+ @pulumi.getter
5286
+ def locations(self) -> Sequence[str]:
5287
+ """
5288
+ List of locations.
5289
+ """
5290
+ return pulumi.get(self, "locations")
5291
+
5292
+
5293
+ @pulumi.output_type
5294
+ class GetControlOrganizationIntelligenceConfigFilterIncludedCloudStorageBucketResult(dict):
5295
+ def __init__(__self__, *,
5296
+ bucket_id_regexes: Sequence[str]):
5297
+ """
5298
+ :param Sequence[str] bucket_id_regexes: List of bucket id regexes to exclude in the storage intelligence plan.
5299
+ """
5300
+ pulumi.set(__self__, "bucket_id_regexes", bucket_id_regexes)
5301
+
5302
+ @property
5303
+ @pulumi.getter(name="bucketIdRegexes")
5304
+ def bucket_id_regexes(self) -> Sequence[str]:
5305
+ """
5306
+ List of bucket id regexes to exclude in the storage intelligence plan.
5307
+ """
5308
+ return pulumi.get(self, "bucket_id_regexes")
5309
+
5310
+
5311
+ @pulumi.output_type
5312
+ class GetControlOrganizationIntelligenceConfigFilterIncludedCloudStorageLocationResult(dict):
5313
+ def __init__(__self__, *,
5314
+ locations: Sequence[str]):
5315
+ """
5316
+ :param Sequence[str] locations: List of locations.
5317
+ """
5318
+ pulumi.set(__self__, "locations", locations)
5319
+
5320
+ @property
5321
+ @pulumi.getter
5322
+ def locations(self) -> Sequence[str]:
5323
+ """
5324
+ List of locations.
5325
+ """
5326
+ return pulumi.get(self, "locations")
5327
+
5328
+
5329
+ @pulumi.output_type
5330
+ class GetControlProjectIntelligenceConfigEffectiveIntelligenceConfigResult(dict):
5331
+ def __init__(__self__, *,
5332
+ effective_edition: str,
5333
+ intelligence_config: str):
5334
+ """
5335
+ :param str effective_edition: The 'StorageIntelligence' edition that is applicable for the resource.
5336
+ :param str intelligence_config: The Intelligence config resource that is applied for the target resource.
5337
+ """
5338
+ pulumi.set(__self__, "effective_edition", effective_edition)
5339
+ pulumi.set(__self__, "intelligence_config", intelligence_config)
5340
+
5341
+ @property
5342
+ @pulumi.getter(name="effectiveEdition")
5343
+ def effective_edition(self) -> str:
5344
+ """
5345
+ The 'StorageIntelligence' edition that is applicable for the resource.
5346
+ """
5347
+ return pulumi.get(self, "effective_edition")
5348
+
5349
+ @property
5350
+ @pulumi.getter(name="intelligenceConfig")
5351
+ def intelligence_config(self) -> str:
5352
+ """
5353
+ The Intelligence config resource that is applied for the target resource.
5354
+ """
5355
+ return pulumi.get(self, "intelligence_config")
5356
+
5357
+
5358
+ @pulumi.output_type
5359
+ class GetControlProjectIntelligenceConfigFilterResult(dict):
5360
+ def __init__(__self__, *,
5361
+ excluded_cloud_storage_buckets: Sequence['outputs.GetControlProjectIntelligenceConfigFilterExcludedCloudStorageBucketResult'],
5362
+ excluded_cloud_storage_locations: Sequence['outputs.GetControlProjectIntelligenceConfigFilterExcludedCloudStorageLocationResult'],
5363
+ included_cloud_storage_buckets: Sequence['outputs.GetControlProjectIntelligenceConfigFilterIncludedCloudStorageBucketResult'],
5364
+ included_cloud_storage_locations: Sequence['outputs.GetControlProjectIntelligenceConfigFilterIncludedCloudStorageLocationResult']):
5365
+ """
5366
+ :param Sequence['GetControlProjectIntelligenceConfigFilterExcludedCloudStorageBucketArgs'] excluded_cloud_storage_buckets: Buckets to exclude from the Storage Intelligence plan.
5367
+ :param Sequence['GetControlProjectIntelligenceConfigFilterExcludedCloudStorageLocationArgs'] excluded_cloud_storage_locations: Locations to exclude from the Storage Intelligence plan.
5368
+ :param Sequence['GetControlProjectIntelligenceConfigFilterIncludedCloudStorageBucketArgs'] included_cloud_storage_buckets: Buckets to include in the Storage Intelligence plan.
5369
+ :param Sequence['GetControlProjectIntelligenceConfigFilterIncludedCloudStorageLocationArgs'] included_cloud_storage_locations: Locations to include in the Storage Intelligence plan.
5370
+ """
5371
+ pulumi.set(__self__, "excluded_cloud_storage_buckets", excluded_cloud_storage_buckets)
5372
+ pulumi.set(__self__, "excluded_cloud_storage_locations", excluded_cloud_storage_locations)
5373
+ pulumi.set(__self__, "included_cloud_storage_buckets", included_cloud_storage_buckets)
5374
+ pulumi.set(__self__, "included_cloud_storage_locations", included_cloud_storage_locations)
5375
+
5376
+ @property
5377
+ @pulumi.getter(name="excludedCloudStorageBuckets")
5378
+ def excluded_cloud_storage_buckets(self) -> Sequence['outputs.GetControlProjectIntelligenceConfigFilterExcludedCloudStorageBucketResult']:
5379
+ """
5380
+ Buckets to exclude from the Storage Intelligence plan.
5381
+ """
5382
+ return pulumi.get(self, "excluded_cloud_storage_buckets")
5383
+
5384
+ @property
5385
+ @pulumi.getter(name="excludedCloudStorageLocations")
5386
+ def excluded_cloud_storage_locations(self) -> Sequence['outputs.GetControlProjectIntelligenceConfigFilterExcludedCloudStorageLocationResult']:
5387
+ """
5388
+ Locations to exclude from the Storage Intelligence plan.
5389
+ """
5390
+ return pulumi.get(self, "excluded_cloud_storage_locations")
5391
+
5392
+ @property
5393
+ @pulumi.getter(name="includedCloudStorageBuckets")
5394
+ def included_cloud_storage_buckets(self) -> Sequence['outputs.GetControlProjectIntelligenceConfigFilterIncludedCloudStorageBucketResult']:
5395
+ """
5396
+ Buckets to include in the Storage Intelligence plan.
5397
+ """
5398
+ return pulumi.get(self, "included_cloud_storage_buckets")
5399
+
5400
+ @property
5401
+ @pulumi.getter(name="includedCloudStorageLocations")
5402
+ def included_cloud_storage_locations(self) -> Sequence['outputs.GetControlProjectIntelligenceConfigFilterIncludedCloudStorageLocationResult']:
5403
+ """
5404
+ Locations to include in the Storage Intelligence plan.
5405
+ """
5406
+ return pulumi.get(self, "included_cloud_storage_locations")
5407
+
5408
+
5409
+ @pulumi.output_type
5410
+ class GetControlProjectIntelligenceConfigFilterExcludedCloudStorageBucketResult(dict):
5411
+ def __init__(__self__, *,
5412
+ bucket_id_regexes: Sequence[str]):
5413
+ """
5414
+ :param Sequence[str] bucket_id_regexes: List of bucket id regexes to exclude in the storage intelligence plan.
5415
+ """
5416
+ pulumi.set(__self__, "bucket_id_regexes", bucket_id_regexes)
5417
+
5418
+ @property
5419
+ @pulumi.getter(name="bucketIdRegexes")
5420
+ def bucket_id_regexes(self) -> Sequence[str]:
5421
+ """
5422
+ List of bucket id regexes to exclude in the storage intelligence plan.
5423
+ """
5424
+ return pulumi.get(self, "bucket_id_regexes")
5425
+
5426
+
5427
+ @pulumi.output_type
5428
+ class GetControlProjectIntelligenceConfigFilterExcludedCloudStorageLocationResult(dict):
5429
+ def __init__(__self__, *,
5430
+ locations: Sequence[str]):
5431
+ """
5432
+ :param Sequence[str] locations: List of locations.
5433
+ """
5434
+ pulumi.set(__self__, "locations", locations)
5435
+
5436
+ @property
5437
+ @pulumi.getter
5438
+ def locations(self) -> Sequence[str]:
5439
+ """
5440
+ List of locations.
5441
+ """
5442
+ return pulumi.get(self, "locations")
5443
+
5444
+
5445
+ @pulumi.output_type
5446
+ class GetControlProjectIntelligenceConfigFilterIncludedCloudStorageBucketResult(dict):
5447
+ def __init__(__self__, *,
5448
+ bucket_id_regexes: Sequence[str]):
5449
+ """
5450
+ :param Sequence[str] bucket_id_regexes: List of bucket id regexes to exclude in the storage intelligence plan.
5451
+ """
5452
+ pulumi.set(__self__, "bucket_id_regexes", bucket_id_regexes)
5453
+
5454
+ @property
5455
+ @pulumi.getter(name="bucketIdRegexes")
5456
+ def bucket_id_regexes(self) -> Sequence[str]:
5457
+ """
5458
+ List of bucket id regexes to exclude in the storage intelligence plan.
5459
+ """
5460
+ return pulumi.get(self, "bucket_id_regexes")
5461
+
5462
+
5463
+ @pulumi.output_type
5464
+ class GetControlProjectIntelligenceConfigFilterIncludedCloudStorageLocationResult(dict):
5465
+ def __init__(__self__, *,
5466
+ locations: Sequence[str]):
5467
+ """
5468
+ :param Sequence[str] locations: List of locations.
5469
+ """
5470
+ pulumi.set(__self__, "locations", locations)
5471
+
5472
+ @property
5473
+ @pulumi.getter
5474
+ def locations(self) -> Sequence[str]:
5475
+ """
5476
+ List of locations.
5477
+ """
5478
+ return pulumi.get(self, "locations")
5479
+
5480
+