pulumi-gcp 8.1.0a1726293903__py3-none-any.whl → 8.2.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 (128) hide show
  1. pulumi_gcp/__init__.py +62 -0
  2. pulumi_gcp/alloydb/_inputs.py +94 -0
  3. pulumi_gcp/alloydb/cluster.py +94 -1
  4. pulumi_gcp/alloydb/outputs.py +79 -0
  5. pulumi_gcp/assuredworkloads/workload.py +135 -16
  6. pulumi_gcp/backupdisasterrecovery/__init__.py +1 -0
  7. pulumi_gcp/backupdisasterrecovery/backup_vault.py +1203 -0
  8. pulumi_gcp/bigquery/__init__.py +1 -0
  9. pulumi_gcp/bigquery/_inputs.py +33 -0
  10. pulumi_gcp/bigquery/data_transfer_config.py +134 -6
  11. pulumi_gcp/bigquery/get_tables.py +143 -0
  12. pulumi_gcp/bigquery/outputs.py +66 -0
  13. pulumi_gcp/bigqueryanalyticshub/_inputs.py +169 -7
  14. pulumi_gcp/bigqueryanalyticshub/data_exchange.py +96 -3
  15. pulumi_gcp/bigqueryanalyticshub/listing.py +114 -0
  16. pulumi_gcp/bigqueryanalyticshub/outputs.py +138 -5
  17. pulumi_gcp/bigtable/_inputs.py +21 -1
  18. pulumi_gcp/bigtable/outputs.py +13 -1
  19. pulumi_gcp/bigtable/table.py +34 -0
  20. pulumi_gcp/certificateauthority/authority.py +14 -7
  21. pulumi_gcp/certificatemanager/__init__.py +1 -0
  22. pulumi_gcp/certificatemanager/certificate.py +28 -0
  23. pulumi_gcp/certificatemanager/get_certificates.py +150 -0
  24. pulumi_gcp/certificatemanager/outputs.py +322 -0
  25. pulumi_gcp/cloudbuild/_inputs.py +6 -6
  26. pulumi_gcp/cloudbuild/outputs.py +4 -4
  27. pulumi_gcp/cloudrun/_inputs.py +6 -12
  28. pulumi_gcp/cloudrun/outputs.py +8 -16
  29. pulumi_gcp/cloudrunv2/_inputs.py +72 -15
  30. pulumi_gcp/cloudrunv2/outputs.py +82 -16
  31. pulumi_gcp/cloudrunv2/service.py +50 -4
  32. pulumi_gcp/cloudtasks/_inputs.py +630 -0
  33. pulumi_gcp/cloudtasks/outputs.py +479 -0
  34. pulumi_gcp/cloudtasks/queue.py +238 -0
  35. pulumi_gcp/compute/__init__.py +1 -0
  36. pulumi_gcp/compute/_inputs.py +2300 -257
  37. pulumi_gcp/compute/get_instance.py +4 -1
  38. pulumi_gcp/compute/health_check.py +114 -0
  39. pulumi_gcp/compute/instance.py +86 -4
  40. pulumi_gcp/compute/instance_template.py +66 -0
  41. pulumi_gcp/compute/interconnect.py +28 -21
  42. pulumi_gcp/compute/network_firewall_policy_with_rules.py +826 -0
  43. pulumi_gcp/compute/node_template.py +93 -0
  44. pulumi_gcp/compute/outputs.py +1491 -6
  45. pulumi_gcp/compute/region_target_http_proxy.py +159 -0
  46. pulumi_gcp/compute/region_target_https_proxy.py +175 -0
  47. pulumi_gcp/compute/service_attachment.py +75 -0
  48. pulumi_gcp/compute/target_http_proxy.py +49 -28
  49. pulumi_gcp/compute/target_https_proxy.py +77 -28
  50. pulumi_gcp/config/__init__.pyi +4 -0
  51. pulumi_gcp/config/vars.py +8 -0
  52. pulumi_gcp/container/_inputs.py +236 -3
  53. pulumi_gcp/container/attached_cluster.py +61 -8
  54. pulumi_gcp/container/outputs.py +276 -2
  55. pulumi_gcp/databasemigrationservice/_inputs.py +176 -148
  56. pulumi_gcp/databasemigrationservice/connection_profile.py +206 -0
  57. pulumi_gcp/databasemigrationservice/outputs.py +109 -87
  58. pulumi_gcp/dataloss/_inputs.py +353 -1
  59. pulumi_gcp/dataloss/outputs.py +274 -3
  60. pulumi_gcp/dataproc/_inputs.py +27 -27
  61. pulumi_gcp/dataproc/metastore_federation.py +8 -8
  62. pulumi_gcp/dataproc/metastore_service.py +2 -0
  63. pulumi_gcp/dataproc/outputs.py +18 -18
  64. pulumi_gcp/datastream/_inputs.py +69 -1
  65. pulumi_gcp/datastream/outputs.py +44 -2
  66. pulumi_gcp/datastream/stream.py +201 -7
  67. pulumi_gcp/developerconnect/__init__.py +11 -0
  68. pulumi_gcp/developerconnect/_inputs.py +301 -0
  69. pulumi_gcp/developerconnect/connection.py +1034 -0
  70. pulumi_gcp/developerconnect/git_repository_link.py +873 -0
  71. pulumi_gcp/developerconnect/outputs.py +247 -0
  72. pulumi_gcp/discoveryengine/_inputs.py +188 -0
  73. pulumi_gcp/discoveryengine/data_store.py +14 -14
  74. pulumi_gcp/discoveryengine/outputs.py +153 -1
  75. pulumi_gcp/firebase/database_instance.py +7 -7
  76. pulumi_gcp/gkehub/_inputs.py +25 -1
  77. pulumi_gcp/gkehub/feature_membership.py +12 -6
  78. pulumi_gcp/gkehub/outputs.py +17 -1
  79. pulumi_gcp/gkeonprem/_inputs.py +3 -3
  80. pulumi_gcp/gkeonprem/outputs.py +2 -2
  81. pulumi_gcp/iam/_inputs.py +196 -0
  82. pulumi_gcp/iam/get_workload_identity_pool_provider.py +13 -3
  83. pulumi_gcp/iam/outputs.py +295 -0
  84. pulumi_gcp/iam/workload_identity_pool_provider.py +164 -3
  85. pulumi_gcp/kms/__init__.py +2 -0
  86. pulumi_gcp/kms/autokey_config.py +10 -2
  87. pulumi_gcp/kms/get_crypto_key_latest_version.py +222 -0
  88. pulumi_gcp/kms/get_crypto_key_versions.py +175 -0
  89. pulumi_gcp/kms/outputs.py +164 -0
  90. pulumi_gcp/memorystore/__init__.py +10 -0
  91. pulumi_gcp/memorystore/_inputs.py +731 -0
  92. pulumi_gcp/memorystore/instance.py +1663 -0
  93. pulumi_gcp/memorystore/outputs.py +598 -0
  94. pulumi_gcp/netapp/active_directory.py +6 -6
  95. pulumi_gcp/netapp/backup.py +6 -6
  96. pulumi_gcp/netapp/backup_policy.py +6 -6
  97. pulumi_gcp/netapp/backup_vault.py +6 -6
  98. pulumi_gcp/netapp/storage_pool.py +4 -4
  99. pulumi_gcp/netapp/volume.py +108 -0
  100. pulumi_gcp/networkconnectivity/_inputs.py +21 -1
  101. pulumi_gcp/networkconnectivity/outputs.py +15 -1
  102. pulumi_gcp/networkconnectivity/spoke.py +8 -0
  103. pulumi_gcp/networksecurity/client_tls_policy.py +24 -22
  104. pulumi_gcp/networksecurity/server_tls_policy.py +20 -32
  105. pulumi_gcp/organizations/folder.py +52 -33
  106. pulumi_gcp/organizations/get_project.py +13 -3
  107. pulumi_gcp/organizations/project.py +88 -3
  108. pulumi_gcp/parallelstore/instance.py +121 -121
  109. pulumi_gcp/projects/iam_member_remove.py +26 -0
  110. pulumi_gcp/projects/usage_export_bucket.py +38 -0
  111. pulumi_gcp/provider.py +40 -0
  112. pulumi_gcp/pubsub/_inputs.py +40 -0
  113. pulumi_gcp/pubsub/outputs.py +51 -1
  114. pulumi_gcp/pubsub/subscription.py +6 -0
  115. pulumi_gcp/pulumi-plugin.json +1 -1
  116. pulumi_gcp/redis/_inputs.py +419 -0
  117. pulumi_gcp/redis/cluster.py +123 -0
  118. pulumi_gcp/redis/outputs.py +315 -0
  119. pulumi_gcp/securitycenter/__init__.py +2 -0
  120. pulumi_gcp/securitycenter/v2_folder_scc_big_query_export.py +857 -0
  121. pulumi_gcp/securitycenter/v2_organization_scc_big_query_exports.py +4 -4
  122. pulumi_gcp/securitycenter/v2_project_mute_config.py +2 -2
  123. pulumi_gcp/securitycenter/v2_project_scc_big_query_export.py +796 -0
  124. pulumi_gcp/vpcaccess/connector.py +21 -28
  125. {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.2.0.dist-info}/METADATA +1 -1
  126. {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.2.0.dist-info}/RECORD +128 -111
  127. {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.2.0.dist-info}/WHEEL +1 -1
  128. {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.2.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,857 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+
17
+ __all__ = ['V2FolderSccBigQueryExportArgs', 'V2FolderSccBigQueryExport']
18
+
19
+ @pulumi.input_type
20
+ class V2FolderSccBigQueryExportArgs:
21
+ def __init__(__self__, *,
22
+ big_query_export_id: pulumi.Input[str],
23
+ folder: pulumi.Input[str],
24
+ dataset: Optional[pulumi.Input[str]] = None,
25
+ description: Optional[pulumi.Input[str]] = None,
26
+ filter: Optional[pulumi.Input[str]] = None,
27
+ location: Optional[pulumi.Input[str]] = None):
28
+ """
29
+ The set of arguments for constructing a V2FolderSccBigQueryExport resource.
30
+ :param pulumi.Input[str] big_query_export_id: This must be unique within the organization. It must consist of only lowercase letters,
31
+ numbers, and hyphens, must start with a letter, must end with either a letter or a number,
32
+ and must be 63 characters or less.
33
+
34
+
35
+ - - -
36
+ :param pulumi.Input[str] folder: The folder where Cloud Security Command Center Big Query Export
37
+ Config lives in.
38
+ :param pulumi.Input[str] dataset: The dataset to write findings' updates to.
39
+ Its format is "projects/[projectId]/datasets/[bigquery_dataset_id]".
40
+ BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
41
+ :param pulumi.Input[str] description: The description of the notification config (max of 1024 characters).
42
+ :param pulumi.Input[str] filter: Expression that defines the filter to apply across create/update
43
+ events of findings. The
44
+ expression is a list of zero or more restrictions combined via
45
+ logical operators AND and OR. Parentheses are supported, and OR
46
+ has higher precedence than AND.
47
+ Restrictions have the form <field> <operator> <value> and may have
48
+ a - character in front of them to indicate negation. The fields
49
+ map to those defined in the corresponding resource.
50
+ The supported operators are:
51
+ * = for all value types.
52
+ * >, <, >=, <= for integer values.
53
+ * :, meaning substring matching, for strings.
54
+ The supported value types are:
55
+ * string literals in quotes.
56
+ * integer literals without quotes.
57
+ * boolean literals true and false without quotes.
58
+ See
59
+ [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
60
+ for information on how to write a filter.
61
+ :param pulumi.Input[str] location: The BigQuery export configuration is stored in this location. If not provided, Use global as default.
62
+ """
63
+ pulumi.set(__self__, "big_query_export_id", big_query_export_id)
64
+ pulumi.set(__self__, "folder", folder)
65
+ if dataset is not None:
66
+ pulumi.set(__self__, "dataset", dataset)
67
+ if description is not None:
68
+ pulumi.set(__self__, "description", description)
69
+ if filter is not None:
70
+ pulumi.set(__self__, "filter", filter)
71
+ if location is not None:
72
+ pulumi.set(__self__, "location", location)
73
+
74
+ @property
75
+ @pulumi.getter(name="bigQueryExportId")
76
+ def big_query_export_id(self) -> pulumi.Input[str]:
77
+ """
78
+ This must be unique within the organization. It must consist of only lowercase letters,
79
+ numbers, and hyphens, must start with a letter, must end with either a letter or a number,
80
+ and must be 63 characters or less.
81
+
82
+
83
+ - - -
84
+ """
85
+ return pulumi.get(self, "big_query_export_id")
86
+
87
+ @big_query_export_id.setter
88
+ def big_query_export_id(self, value: pulumi.Input[str]):
89
+ pulumi.set(self, "big_query_export_id", value)
90
+
91
+ @property
92
+ @pulumi.getter
93
+ def folder(self) -> pulumi.Input[str]:
94
+ """
95
+ The folder where Cloud Security Command Center Big Query Export
96
+ Config lives in.
97
+ """
98
+ return pulumi.get(self, "folder")
99
+
100
+ @folder.setter
101
+ def folder(self, value: pulumi.Input[str]):
102
+ pulumi.set(self, "folder", value)
103
+
104
+ @property
105
+ @pulumi.getter
106
+ def dataset(self) -> Optional[pulumi.Input[str]]:
107
+ """
108
+ The dataset to write findings' updates to.
109
+ Its format is "projects/[projectId]/datasets/[bigquery_dataset_id]".
110
+ BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
111
+ """
112
+ return pulumi.get(self, "dataset")
113
+
114
+ @dataset.setter
115
+ def dataset(self, value: Optional[pulumi.Input[str]]):
116
+ pulumi.set(self, "dataset", value)
117
+
118
+ @property
119
+ @pulumi.getter
120
+ def description(self) -> Optional[pulumi.Input[str]]:
121
+ """
122
+ The description of the notification config (max of 1024 characters).
123
+ """
124
+ return pulumi.get(self, "description")
125
+
126
+ @description.setter
127
+ def description(self, value: Optional[pulumi.Input[str]]):
128
+ pulumi.set(self, "description", value)
129
+
130
+ @property
131
+ @pulumi.getter
132
+ def filter(self) -> Optional[pulumi.Input[str]]:
133
+ """
134
+ Expression that defines the filter to apply across create/update
135
+ events of findings. The
136
+ expression is a list of zero or more restrictions combined via
137
+ logical operators AND and OR. Parentheses are supported, and OR
138
+ has higher precedence than AND.
139
+ Restrictions have the form <field> <operator> <value> and may have
140
+ a - character in front of them to indicate negation. The fields
141
+ map to those defined in the corresponding resource.
142
+ The supported operators are:
143
+ * = for all value types.
144
+ * >, <, >=, <= for integer values.
145
+ * :, meaning substring matching, for strings.
146
+ The supported value types are:
147
+ * string literals in quotes.
148
+ * integer literals without quotes.
149
+ * boolean literals true and false without quotes.
150
+ See
151
+ [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
152
+ for information on how to write a filter.
153
+ """
154
+ return pulumi.get(self, "filter")
155
+
156
+ @filter.setter
157
+ def filter(self, value: Optional[pulumi.Input[str]]):
158
+ pulumi.set(self, "filter", value)
159
+
160
+ @property
161
+ @pulumi.getter
162
+ def location(self) -> Optional[pulumi.Input[str]]:
163
+ """
164
+ The BigQuery export configuration is stored in this location. If not provided, Use global as default.
165
+ """
166
+ return pulumi.get(self, "location")
167
+
168
+ @location.setter
169
+ def location(self, value: Optional[pulumi.Input[str]]):
170
+ pulumi.set(self, "location", value)
171
+
172
+
173
+ @pulumi.input_type
174
+ class _V2FolderSccBigQueryExportState:
175
+ def __init__(__self__, *,
176
+ big_query_export_id: Optional[pulumi.Input[str]] = None,
177
+ create_time: Optional[pulumi.Input[str]] = None,
178
+ dataset: Optional[pulumi.Input[str]] = None,
179
+ description: Optional[pulumi.Input[str]] = None,
180
+ filter: Optional[pulumi.Input[str]] = None,
181
+ folder: Optional[pulumi.Input[str]] = None,
182
+ location: Optional[pulumi.Input[str]] = None,
183
+ most_recent_editor: Optional[pulumi.Input[str]] = None,
184
+ name: Optional[pulumi.Input[str]] = None,
185
+ principal: Optional[pulumi.Input[str]] = None,
186
+ update_time: Optional[pulumi.Input[str]] = None):
187
+ """
188
+ Input properties used for looking up and filtering V2FolderSccBigQueryExport resources.
189
+ :param pulumi.Input[str] big_query_export_id: This must be unique within the organization. It must consist of only lowercase letters,
190
+ numbers, and hyphens, must start with a letter, must end with either a letter or a number,
191
+ and must be 63 characters or less.
192
+
193
+
194
+ - - -
195
+ :param pulumi.Input[str] create_time: The time at which the BigQuery export was created. This field is set by the server and will be ignored if provided on export on creation.
196
+ A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
197
+ Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
198
+ :param pulumi.Input[str] dataset: The dataset to write findings' updates to.
199
+ Its format is "projects/[projectId]/datasets/[bigquery_dataset_id]".
200
+ BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
201
+ :param pulumi.Input[str] description: The description of the notification config (max of 1024 characters).
202
+ :param pulumi.Input[str] filter: Expression that defines the filter to apply across create/update
203
+ events of findings. The
204
+ expression is a list of zero or more restrictions combined via
205
+ logical operators AND and OR. Parentheses are supported, and OR
206
+ has higher precedence than AND.
207
+ Restrictions have the form <field> <operator> <value> and may have
208
+ a - character in front of them to indicate negation. The fields
209
+ map to those defined in the corresponding resource.
210
+ The supported operators are:
211
+ * = for all value types.
212
+ * >, <, >=, <= for integer values.
213
+ * :, meaning substring matching, for strings.
214
+ The supported value types are:
215
+ * string literals in quotes.
216
+ * integer literals without quotes.
217
+ * boolean literals true and false without quotes.
218
+ See
219
+ [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
220
+ for information on how to write a filter.
221
+ :param pulumi.Input[str] folder: The folder where Cloud Security Command Center Big Query Export
222
+ Config lives in.
223
+ :param pulumi.Input[str] location: The BigQuery export configuration is stored in this location. If not provided, Use global as default.
224
+ :param pulumi.Input[str] most_recent_editor: Email address of the user who last edited the BigQuery export.
225
+ This field is set by the server and will be ignored if provided on export creation or update.
226
+ :param pulumi.Input[str] name: The resource name of this export, in the format
227
+ `folders/{{folder}}/locations/{{location}}/bigQueryExports/{{big_query_export_id}}`.
228
+ This field is provided in responses, and is ignored when provided in create requests.
229
+ :param pulumi.Input[str] principal: The service account that needs permission to create table and upload data to the BigQuery dataset.
230
+ :param pulumi.Input[str] update_time: The most recent time at which the BigQuery export was updated. This field is set by the server and will be ignored if provided on export creation or update.
231
+ A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
232
+ Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
233
+ """
234
+ if big_query_export_id is not None:
235
+ pulumi.set(__self__, "big_query_export_id", big_query_export_id)
236
+ if create_time is not None:
237
+ pulumi.set(__self__, "create_time", create_time)
238
+ if dataset is not None:
239
+ pulumi.set(__self__, "dataset", dataset)
240
+ if description is not None:
241
+ pulumi.set(__self__, "description", description)
242
+ if filter is not None:
243
+ pulumi.set(__self__, "filter", filter)
244
+ if folder is not None:
245
+ pulumi.set(__self__, "folder", folder)
246
+ if location is not None:
247
+ pulumi.set(__self__, "location", location)
248
+ if most_recent_editor is not None:
249
+ pulumi.set(__self__, "most_recent_editor", most_recent_editor)
250
+ if name is not None:
251
+ pulumi.set(__self__, "name", name)
252
+ if principal is not None:
253
+ pulumi.set(__self__, "principal", principal)
254
+ if update_time is not None:
255
+ pulumi.set(__self__, "update_time", update_time)
256
+
257
+ @property
258
+ @pulumi.getter(name="bigQueryExportId")
259
+ def big_query_export_id(self) -> Optional[pulumi.Input[str]]:
260
+ """
261
+ This must be unique within the organization. It must consist of only lowercase letters,
262
+ numbers, and hyphens, must start with a letter, must end with either a letter or a number,
263
+ and must be 63 characters or less.
264
+
265
+
266
+ - - -
267
+ """
268
+ return pulumi.get(self, "big_query_export_id")
269
+
270
+ @big_query_export_id.setter
271
+ def big_query_export_id(self, value: Optional[pulumi.Input[str]]):
272
+ pulumi.set(self, "big_query_export_id", value)
273
+
274
+ @property
275
+ @pulumi.getter(name="createTime")
276
+ def create_time(self) -> Optional[pulumi.Input[str]]:
277
+ """
278
+ The time at which the BigQuery export was created. This field is set by the server and will be ignored if provided on export on creation.
279
+ A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
280
+ Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
281
+ """
282
+ return pulumi.get(self, "create_time")
283
+
284
+ @create_time.setter
285
+ def create_time(self, value: Optional[pulumi.Input[str]]):
286
+ pulumi.set(self, "create_time", value)
287
+
288
+ @property
289
+ @pulumi.getter
290
+ def dataset(self) -> Optional[pulumi.Input[str]]:
291
+ """
292
+ The dataset to write findings' updates to.
293
+ Its format is "projects/[projectId]/datasets/[bigquery_dataset_id]".
294
+ BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
295
+ """
296
+ return pulumi.get(self, "dataset")
297
+
298
+ @dataset.setter
299
+ def dataset(self, value: Optional[pulumi.Input[str]]):
300
+ pulumi.set(self, "dataset", value)
301
+
302
+ @property
303
+ @pulumi.getter
304
+ def description(self) -> Optional[pulumi.Input[str]]:
305
+ """
306
+ The description of the notification config (max of 1024 characters).
307
+ """
308
+ return pulumi.get(self, "description")
309
+
310
+ @description.setter
311
+ def description(self, value: Optional[pulumi.Input[str]]):
312
+ pulumi.set(self, "description", value)
313
+
314
+ @property
315
+ @pulumi.getter
316
+ def filter(self) -> Optional[pulumi.Input[str]]:
317
+ """
318
+ Expression that defines the filter to apply across create/update
319
+ events of findings. The
320
+ expression is a list of zero or more restrictions combined via
321
+ logical operators AND and OR. Parentheses are supported, and OR
322
+ has higher precedence than AND.
323
+ Restrictions have the form <field> <operator> <value> and may have
324
+ a - character in front of them to indicate negation. The fields
325
+ map to those defined in the corresponding resource.
326
+ The supported operators are:
327
+ * = for all value types.
328
+ * >, <, >=, <= for integer values.
329
+ * :, meaning substring matching, for strings.
330
+ The supported value types are:
331
+ * string literals in quotes.
332
+ * integer literals without quotes.
333
+ * boolean literals true and false without quotes.
334
+ See
335
+ [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
336
+ for information on how to write a filter.
337
+ """
338
+ return pulumi.get(self, "filter")
339
+
340
+ @filter.setter
341
+ def filter(self, value: Optional[pulumi.Input[str]]):
342
+ pulumi.set(self, "filter", value)
343
+
344
+ @property
345
+ @pulumi.getter
346
+ def folder(self) -> Optional[pulumi.Input[str]]:
347
+ """
348
+ The folder where Cloud Security Command Center Big Query Export
349
+ Config lives in.
350
+ """
351
+ return pulumi.get(self, "folder")
352
+
353
+ @folder.setter
354
+ def folder(self, value: Optional[pulumi.Input[str]]):
355
+ pulumi.set(self, "folder", value)
356
+
357
+ @property
358
+ @pulumi.getter
359
+ def location(self) -> Optional[pulumi.Input[str]]:
360
+ """
361
+ The BigQuery export configuration is stored in this location. If not provided, Use global as default.
362
+ """
363
+ return pulumi.get(self, "location")
364
+
365
+ @location.setter
366
+ def location(self, value: Optional[pulumi.Input[str]]):
367
+ pulumi.set(self, "location", value)
368
+
369
+ @property
370
+ @pulumi.getter(name="mostRecentEditor")
371
+ def most_recent_editor(self) -> Optional[pulumi.Input[str]]:
372
+ """
373
+ Email address of the user who last edited the BigQuery export.
374
+ This field is set by the server and will be ignored if provided on export creation or update.
375
+ """
376
+ return pulumi.get(self, "most_recent_editor")
377
+
378
+ @most_recent_editor.setter
379
+ def most_recent_editor(self, value: Optional[pulumi.Input[str]]):
380
+ pulumi.set(self, "most_recent_editor", value)
381
+
382
+ @property
383
+ @pulumi.getter
384
+ def name(self) -> Optional[pulumi.Input[str]]:
385
+ """
386
+ The resource name of this export, in the format
387
+ `folders/{{folder}}/locations/{{location}}/bigQueryExports/{{big_query_export_id}}`.
388
+ This field is provided in responses, and is ignored when provided in create requests.
389
+ """
390
+ return pulumi.get(self, "name")
391
+
392
+ @name.setter
393
+ def name(self, value: Optional[pulumi.Input[str]]):
394
+ pulumi.set(self, "name", value)
395
+
396
+ @property
397
+ @pulumi.getter
398
+ def principal(self) -> Optional[pulumi.Input[str]]:
399
+ """
400
+ The service account that needs permission to create table and upload data to the BigQuery dataset.
401
+ """
402
+ return pulumi.get(self, "principal")
403
+
404
+ @principal.setter
405
+ def principal(self, value: Optional[pulumi.Input[str]]):
406
+ pulumi.set(self, "principal", value)
407
+
408
+ @property
409
+ @pulumi.getter(name="updateTime")
410
+ def update_time(self) -> Optional[pulumi.Input[str]]:
411
+ """
412
+ The most recent time at which the BigQuery export was updated. This field is set by the server and will be ignored if provided on export creation or update.
413
+ A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
414
+ Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
415
+ """
416
+ return pulumi.get(self, "update_time")
417
+
418
+ @update_time.setter
419
+ def update_time(self, value: Optional[pulumi.Input[str]]):
420
+ pulumi.set(self, "update_time", value)
421
+
422
+
423
+ class V2FolderSccBigQueryExport(pulumi.CustomResource):
424
+ @overload
425
+ def __init__(__self__,
426
+ resource_name: str,
427
+ opts: Optional[pulumi.ResourceOptions] = None,
428
+ big_query_export_id: Optional[pulumi.Input[str]] = None,
429
+ dataset: Optional[pulumi.Input[str]] = None,
430
+ description: Optional[pulumi.Input[str]] = None,
431
+ filter: Optional[pulumi.Input[str]] = None,
432
+ folder: Optional[pulumi.Input[str]] = None,
433
+ location: Optional[pulumi.Input[str]] = None,
434
+ __props__=None):
435
+ """
436
+ A Cloud Security Command Center (Cloud SCC) Big Query Export Config.
437
+ It represents exporting Security Command Center data, including assets, findings, and security marks
438
+ using gcloud scc bqexports
439
+ > **Note:** In order to use Cloud SCC resources, your organization must be enrolled
440
+ in [SCC Standard/Premium](https://cloud.google.com/security-command-center/docs/quickstart-security-command-center).
441
+ Without doing so, you may run into errors during resource creation.
442
+
443
+ To get more information about FolderSccBigQueryExport, see:
444
+
445
+ * [API documentation](https://cloud.google.com/security-command-center/docs/reference/rest/v2/folders.locations.bigQueryExports)
446
+ * How-to Guides
447
+ * [Official Documentation](https://cloud.google.com/security-command-center/docs/how-to-analyze-findings-in-big-query)
448
+
449
+ ## Example Usage
450
+
451
+ ### Scc V2 Folder Big Query Export Config Basic
452
+
453
+ ```python
454
+ import pulumi
455
+ import pulumi_gcp as gcp
456
+
457
+ folder = gcp.organizations.Folder("folder",
458
+ parent="organizations/123456789",
459
+ display_name="folder-name",
460
+ deletion_protection=False)
461
+ default = gcp.bigquery.Dataset("default",
462
+ dataset_id="my_dataset_id",
463
+ friendly_name="test",
464
+ description="This is a test description",
465
+ location="US",
466
+ default_table_expiration_ms=3600000,
467
+ default_partition_expiration_ms=None,
468
+ labels={
469
+ "env": "default",
470
+ })
471
+ custom_big_query_export_config = gcp.securitycenter.V2FolderSccBigQueryExport("custom_big_query_export_config",
472
+ big_query_export_id="my-export",
473
+ folder=folder.folder_id,
474
+ dataset=default.id,
475
+ location="global",
476
+ description="Cloud Security Command Center Findings Big Query Export Config",
477
+ filter="state=\\"ACTIVE\\" AND NOT mute=\\"MUTED\\"")
478
+ ```
479
+
480
+ ## Import
481
+
482
+ FolderSccBigQueryExport can be imported using any of these accepted formats:
483
+
484
+ * `folders/{{folder}}/locations/{{location}}/bigQueryExports/{{big_query_export_id}}`
485
+
486
+ * `{{folder}}/{{location}}/{{big_query_export_id}}`
487
+
488
+ When using the `pulumi import` command, FolderSccBigQueryExport can be imported using one of the formats above. For example:
489
+
490
+ ```sh
491
+ $ pulumi import gcp:securitycenter/v2FolderSccBigQueryExport:V2FolderSccBigQueryExport default folders/{{folder}}/locations/{{location}}/bigQueryExports/{{big_query_export_id}}
492
+ ```
493
+
494
+ ```sh
495
+ $ pulumi import gcp:securitycenter/v2FolderSccBigQueryExport:V2FolderSccBigQueryExport default {{folder}}/{{location}}/{{big_query_export_id}}
496
+ ```
497
+
498
+ :param str resource_name: The name of the resource.
499
+ :param pulumi.ResourceOptions opts: Options for the resource.
500
+ :param pulumi.Input[str] big_query_export_id: This must be unique within the organization. It must consist of only lowercase letters,
501
+ numbers, and hyphens, must start with a letter, must end with either a letter or a number,
502
+ and must be 63 characters or less.
503
+
504
+
505
+ - - -
506
+ :param pulumi.Input[str] dataset: The dataset to write findings' updates to.
507
+ Its format is "projects/[projectId]/datasets/[bigquery_dataset_id]".
508
+ BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
509
+ :param pulumi.Input[str] description: The description of the notification config (max of 1024 characters).
510
+ :param pulumi.Input[str] filter: Expression that defines the filter to apply across create/update
511
+ events of findings. The
512
+ expression is a list of zero or more restrictions combined via
513
+ logical operators AND and OR. Parentheses are supported, and OR
514
+ has higher precedence than AND.
515
+ Restrictions have the form <field> <operator> <value> and may have
516
+ a - character in front of them to indicate negation. The fields
517
+ map to those defined in the corresponding resource.
518
+ The supported operators are:
519
+ * = for all value types.
520
+ * >, <, >=, <= for integer values.
521
+ * :, meaning substring matching, for strings.
522
+ The supported value types are:
523
+ * string literals in quotes.
524
+ * integer literals without quotes.
525
+ * boolean literals true and false without quotes.
526
+ See
527
+ [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
528
+ for information on how to write a filter.
529
+ :param pulumi.Input[str] folder: The folder where Cloud Security Command Center Big Query Export
530
+ Config lives in.
531
+ :param pulumi.Input[str] location: The BigQuery export configuration is stored in this location. If not provided, Use global as default.
532
+ """
533
+ ...
534
+ @overload
535
+ def __init__(__self__,
536
+ resource_name: str,
537
+ args: V2FolderSccBigQueryExportArgs,
538
+ opts: Optional[pulumi.ResourceOptions] = None):
539
+ """
540
+ A Cloud Security Command Center (Cloud SCC) Big Query Export Config.
541
+ It represents exporting Security Command Center data, including assets, findings, and security marks
542
+ using gcloud scc bqexports
543
+ > **Note:** In order to use Cloud SCC resources, your organization must be enrolled
544
+ in [SCC Standard/Premium](https://cloud.google.com/security-command-center/docs/quickstart-security-command-center).
545
+ Without doing so, you may run into errors during resource creation.
546
+
547
+ To get more information about FolderSccBigQueryExport, see:
548
+
549
+ * [API documentation](https://cloud.google.com/security-command-center/docs/reference/rest/v2/folders.locations.bigQueryExports)
550
+ * How-to Guides
551
+ * [Official Documentation](https://cloud.google.com/security-command-center/docs/how-to-analyze-findings-in-big-query)
552
+
553
+ ## Example Usage
554
+
555
+ ### Scc V2 Folder Big Query Export Config Basic
556
+
557
+ ```python
558
+ import pulumi
559
+ import pulumi_gcp as gcp
560
+
561
+ folder = gcp.organizations.Folder("folder",
562
+ parent="organizations/123456789",
563
+ display_name="folder-name",
564
+ deletion_protection=False)
565
+ default = gcp.bigquery.Dataset("default",
566
+ dataset_id="my_dataset_id",
567
+ friendly_name="test",
568
+ description="This is a test description",
569
+ location="US",
570
+ default_table_expiration_ms=3600000,
571
+ default_partition_expiration_ms=None,
572
+ labels={
573
+ "env": "default",
574
+ })
575
+ custom_big_query_export_config = gcp.securitycenter.V2FolderSccBigQueryExport("custom_big_query_export_config",
576
+ big_query_export_id="my-export",
577
+ folder=folder.folder_id,
578
+ dataset=default.id,
579
+ location="global",
580
+ description="Cloud Security Command Center Findings Big Query Export Config",
581
+ filter="state=\\"ACTIVE\\" AND NOT mute=\\"MUTED\\"")
582
+ ```
583
+
584
+ ## Import
585
+
586
+ FolderSccBigQueryExport can be imported using any of these accepted formats:
587
+
588
+ * `folders/{{folder}}/locations/{{location}}/bigQueryExports/{{big_query_export_id}}`
589
+
590
+ * `{{folder}}/{{location}}/{{big_query_export_id}}`
591
+
592
+ When using the `pulumi import` command, FolderSccBigQueryExport can be imported using one of the formats above. For example:
593
+
594
+ ```sh
595
+ $ pulumi import gcp:securitycenter/v2FolderSccBigQueryExport:V2FolderSccBigQueryExport default folders/{{folder}}/locations/{{location}}/bigQueryExports/{{big_query_export_id}}
596
+ ```
597
+
598
+ ```sh
599
+ $ pulumi import gcp:securitycenter/v2FolderSccBigQueryExport:V2FolderSccBigQueryExport default {{folder}}/{{location}}/{{big_query_export_id}}
600
+ ```
601
+
602
+ :param str resource_name: The name of the resource.
603
+ :param V2FolderSccBigQueryExportArgs args: The arguments to use to populate this resource's properties.
604
+ :param pulumi.ResourceOptions opts: Options for the resource.
605
+ """
606
+ ...
607
+ def __init__(__self__, resource_name: str, *args, **kwargs):
608
+ resource_args, opts = _utilities.get_resource_args_opts(V2FolderSccBigQueryExportArgs, pulumi.ResourceOptions, *args, **kwargs)
609
+ if resource_args is not None:
610
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
611
+ else:
612
+ __self__._internal_init(resource_name, *args, **kwargs)
613
+
614
+ def _internal_init(__self__,
615
+ resource_name: str,
616
+ opts: Optional[pulumi.ResourceOptions] = None,
617
+ big_query_export_id: Optional[pulumi.Input[str]] = None,
618
+ dataset: Optional[pulumi.Input[str]] = None,
619
+ description: Optional[pulumi.Input[str]] = None,
620
+ filter: Optional[pulumi.Input[str]] = None,
621
+ folder: Optional[pulumi.Input[str]] = None,
622
+ location: Optional[pulumi.Input[str]] = None,
623
+ __props__=None):
624
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
625
+ if not isinstance(opts, pulumi.ResourceOptions):
626
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
627
+ if opts.id is None:
628
+ if __props__ is not None:
629
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
630
+ __props__ = V2FolderSccBigQueryExportArgs.__new__(V2FolderSccBigQueryExportArgs)
631
+
632
+ if big_query_export_id is None and not opts.urn:
633
+ raise TypeError("Missing required property 'big_query_export_id'")
634
+ __props__.__dict__["big_query_export_id"] = big_query_export_id
635
+ __props__.__dict__["dataset"] = dataset
636
+ __props__.__dict__["description"] = description
637
+ __props__.__dict__["filter"] = filter
638
+ if folder is None and not opts.urn:
639
+ raise TypeError("Missing required property 'folder'")
640
+ __props__.__dict__["folder"] = folder
641
+ __props__.__dict__["location"] = location
642
+ __props__.__dict__["create_time"] = None
643
+ __props__.__dict__["most_recent_editor"] = None
644
+ __props__.__dict__["name"] = None
645
+ __props__.__dict__["principal"] = None
646
+ __props__.__dict__["update_time"] = None
647
+ super(V2FolderSccBigQueryExport, __self__).__init__(
648
+ 'gcp:securitycenter/v2FolderSccBigQueryExport:V2FolderSccBigQueryExport',
649
+ resource_name,
650
+ __props__,
651
+ opts)
652
+
653
+ @staticmethod
654
+ def get(resource_name: str,
655
+ id: pulumi.Input[str],
656
+ opts: Optional[pulumi.ResourceOptions] = None,
657
+ big_query_export_id: Optional[pulumi.Input[str]] = None,
658
+ create_time: Optional[pulumi.Input[str]] = None,
659
+ dataset: Optional[pulumi.Input[str]] = None,
660
+ description: Optional[pulumi.Input[str]] = None,
661
+ filter: Optional[pulumi.Input[str]] = None,
662
+ folder: Optional[pulumi.Input[str]] = None,
663
+ location: Optional[pulumi.Input[str]] = None,
664
+ most_recent_editor: Optional[pulumi.Input[str]] = None,
665
+ name: Optional[pulumi.Input[str]] = None,
666
+ principal: Optional[pulumi.Input[str]] = None,
667
+ update_time: Optional[pulumi.Input[str]] = None) -> 'V2FolderSccBigQueryExport':
668
+ """
669
+ Get an existing V2FolderSccBigQueryExport resource's state with the given name, id, and optional extra
670
+ properties used to qualify the lookup.
671
+
672
+ :param str resource_name: The unique name of the resulting resource.
673
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
674
+ :param pulumi.ResourceOptions opts: Options for the resource.
675
+ :param pulumi.Input[str] big_query_export_id: This must be unique within the organization. It must consist of only lowercase letters,
676
+ numbers, and hyphens, must start with a letter, must end with either a letter or a number,
677
+ and must be 63 characters or less.
678
+
679
+
680
+ - - -
681
+ :param pulumi.Input[str] create_time: The time at which the BigQuery export was created. This field is set by the server and will be ignored if provided on export on creation.
682
+ A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
683
+ Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
684
+ :param pulumi.Input[str] dataset: The dataset to write findings' updates to.
685
+ Its format is "projects/[projectId]/datasets/[bigquery_dataset_id]".
686
+ BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
687
+ :param pulumi.Input[str] description: The description of the notification config (max of 1024 characters).
688
+ :param pulumi.Input[str] filter: Expression that defines the filter to apply across create/update
689
+ events of findings. The
690
+ expression is a list of zero or more restrictions combined via
691
+ logical operators AND and OR. Parentheses are supported, and OR
692
+ has higher precedence than AND.
693
+ Restrictions have the form <field> <operator> <value> and may have
694
+ a - character in front of them to indicate negation. The fields
695
+ map to those defined in the corresponding resource.
696
+ The supported operators are:
697
+ * = for all value types.
698
+ * >, <, >=, <= for integer values.
699
+ * :, meaning substring matching, for strings.
700
+ The supported value types are:
701
+ * string literals in quotes.
702
+ * integer literals without quotes.
703
+ * boolean literals true and false without quotes.
704
+ See
705
+ [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
706
+ for information on how to write a filter.
707
+ :param pulumi.Input[str] folder: The folder where Cloud Security Command Center Big Query Export
708
+ Config lives in.
709
+ :param pulumi.Input[str] location: The BigQuery export configuration is stored in this location. If not provided, Use global as default.
710
+ :param pulumi.Input[str] most_recent_editor: Email address of the user who last edited the BigQuery export.
711
+ This field is set by the server and will be ignored if provided on export creation or update.
712
+ :param pulumi.Input[str] name: The resource name of this export, in the format
713
+ `folders/{{folder}}/locations/{{location}}/bigQueryExports/{{big_query_export_id}}`.
714
+ This field is provided in responses, and is ignored when provided in create requests.
715
+ :param pulumi.Input[str] principal: The service account that needs permission to create table and upload data to the BigQuery dataset.
716
+ :param pulumi.Input[str] update_time: The most recent time at which the BigQuery export was updated. This field is set by the server and will be ignored if provided on export creation or update.
717
+ A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
718
+ Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
719
+ """
720
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
721
+
722
+ __props__ = _V2FolderSccBigQueryExportState.__new__(_V2FolderSccBigQueryExportState)
723
+
724
+ __props__.__dict__["big_query_export_id"] = big_query_export_id
725
+ __props__.__dict__["create_time"] = create_time
726
+ __props__.__dict__["dataset"] = dataset
727
+ __props__.__dict__["description"] = description
728
+ __props__.__dict__["filter"] = filter
729
+ __props__.__dict__["folder"] = folder
730
+ __props__.__dict__["location"] = location
731
+ __props__.__dict__["most_recent_editor"] = most_recent_editor
732
+ __props__.__dict__["name"] = name
733
+ __props__.__dict__["principal"] = principal
734
+ __props__.__dict__["update_time"] = update_time
735
+ return V2FolderSccBigQueryExport(resource_name, opts=opts, __props__=__props__)
736
+
737
+ @property
738
+ @pulumi.getter(name="bigQueryExportId")
739
+ def big_query_export_id(self) -> pulumi.Output[str]:
740
+ """
741
+ This must be unique within the organization. It must consist of only lowercase letters,
742
+ numbers, and hyphens, must start with a letter, must end with either a letter or a number,
743
+ and must be 63 characters or less.
744
+
745
+
746
+ - - -
747
+ """
748
+ return pulumi.get(self, "big_query_export_id")
749
+
750
+ @property
751
+ @pulumi.getter(name="createTime")
752
+ def create_time(self) -> pulumi.Output[str]:
753
+ """
754
+ The time at which the BigQuery export was created. This field is set by the server and will be ignored if provided on export on creation.
755
+ A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
756
+ Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
757
+ """
758
+ return pulumi.get(self, "create_time")
759
+
760
+ @property
761
+ @pulumi.getter
762
+ def dataset(self) -> pulumi.Output[Optional[str]]:
763
+ """
764
+ The dataset to write findings' updates to.
765
+ Its format is "projects/[projectId]/datasets/[bigquery_dataset_id]".
766
+ BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
767
+ """
768
+ return pulumi.get(self, "dataset")
769
+
770
+ @property
771
+ @pulumi.getter
772
+ def description(self) -> pulumi.Output[Optional[str]]:
773
+ """
774
+ The description of the notification config (max of 1024 characters).
775
+ """
776
+ return pulumi.get(self, "description")
777
+
778
+ @property
779
+ @pulumi.getter
780
+ def filter(self) -> pulumi.Output[Optional[str]]:
781
+ """
782
+ Expression that defines the filter to apply across create/update
783
+ events of findings. The
784
+ expression is a list of zero or more restrictions combined via
785
+ logical operators AND and OR. Parentheses are supported, and OR
786
+ has higher precedence than AND.
787
+ Restrictions have the form <field> <operator> <value> and may have
788
+ a - character in front of them to indicate negation. The fields
789
+ map to those defined in the corresponding resource.
790
+ The supported operators are:
791
+ * = for all value types.
792
+ * >, <, >=, <= for integer values.
793
+ * :, meaning substring matching, for strings.
794
+ The supported value types are:
795
+ * string literals in quotes.
796
+ * integer literals without quotes.
797
+ * boolean literals true and false without quotes.
798
+ See
799
+ [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
800
+ for information on how to write a filter.
801
+ """
802
+ return pulumi.get(self, "filter")
803
+
804
+ @property
805
+ @pulumi.getter
806
+ def folder(self) -> pulumi.Output[str]:
807
+ """
808
+ The folder where Cloud Security Command Center Big Query Export
809
+ Config lives in.
810
+ """
811
+ return pulumi.get(self, "folder")
812
+
813
+ @property
814
+ @pulumi.getter
815
+ def location(self) -> pulumi.Output[Optional[str]]:
816
+ """
817
+ The BigQuery export configuration is stored in this location. If not provided, Use global as default.
818
+ """
819
+ return pulumi.get(self, "location")
820
+
821
+ @property
822
+ @pulumi.getter(name="mostRecentEditor")
823
+ def most_recent_editor(self) -> pulumi.Output[str]:
824
+ """
825
+ Email address of the user who last edited the BigQuery export.
826
+ This field is set by the server and will be ignored if provided on export creation or update.
827
+ """
828
+ return pulumi.get(self, "most_recent_editor")
829
+
830
+ @property
831
+ @pulumi.getter
832
+ def name(self) -> pulumi.Output[str]:
833
+ """
834
+ The resource name of this export, in the format
835
+ `folders/{{folder}}/locations/{{location}}/bigQueryExports/{{big_query_export_id}}`.
836
+ This field is provided in responses, and is ignored when provided in create requests.
837
+ """
838
+ return pulumi.get(self, "name")
839
+
840
+ @property
841
+ @pulumi.getter
842
+ def principal(self) -> pulumi.Output[str]:
843
+ """
844
+ The service account that needs permission to create table and upload data to the BigQuery dataset.
845
+ """
846
+ return pulumi.get(self, "principal")
847
+
848
+ @property
849
+ @pulumi.getter(name="updateTime")
850
+ def update_time(self) -> pulumi.Output[str]:
851
+ """
852
+ The most recent time at which the BigQuery export was updated. This field is set by the server and will be ignored if provided on export creation or update.
853
+ A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
854
+ Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
855
+ """
856
+ return pulumi.get(self, "update_time")
857
+