Skip to content

Commit fffe7a5

Browse files
feat: [google-cloud-dataplex] update Go Datastore import path (googleapis#13282)
- [ ] Regenerate this pull request now. feat: update Go Bigtable import path BEGIN_COMMIT_OVERRIDE feat: release MetadataJob APIs and related resources in GA feat: expose create time in DataScanJobAPI docs: correct API documentation feat: release metadata export in private preview feat: Add data_version field to AspectSource docs: add info about schema changes for BigQuery metadata in Dataplex Catalog docs: Add Identifier for `name` in message `.google.cloud.dataplex.v1.MetadataJob` docs: Add comment for field `type` in message `.google.cloud.dataplex.v1.MetadataJob` docs: Add comment for field `status` in message `.google.cloud.dataplex.v1.MetadataJob` docs: Add link to fully qualified names documentation feat: add annotations in CreateMetadataJob, GetMetadataJob, ListMetaDataJobs and CancelMetadataJob for cloud audit logging feat: Add new Data Discovery scan type in Datascan docs: Scrub descriptions for standalone discovery scans docs: correct the dimensions for data quality rules feat: A new field `suspended` is added to DataScans feat: expose create time to customers feat: Add a TABLE_PUBLISHED field in DiscoveryEvent feat: Add a TABLE_UPDATED field in DiscoveryEvent feat: Add a TABLE_IGNORED field in DiscoveryEvent feat: Add a TABLE_DELETED field in DiscoveryEvent feat: Add a DATA_DISCOVERY enum type in DataScanEvent feat: Add a DataDiscoveryAppliedConfigs message docs: A comment for message `DataScanEvent` is changed feat: Add an Issue field to DiscoveryEvent.ActionDetails to output the action message in Cloud Logs feat: A new enum `TableType` is added feat: A new message `TableDetails` is added feat: A new field `datascan_id` is added to message `.google.cloud.dataplex.v1.DiscoveryEvent` feat: A new field `table` is added to message `.google.cloud.dataplex.v1.DiscoveryEvent` docs: Dataplex Tasks do not support Dataplex Content path as a direct input anymore END_COMMIT_OVERRIDE PiperOrigin-RevId: 696600248 Source-Link: googleapis/googleapis@43e5337 Source-Link: https://github.com/googleapis/googleapis-gen/commit/1f67afb4970ea4c3fe535021a5fc8ba16968a026 Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWRhdGFwbGV4Ly5Pd2xCb3QueWFtbCIsImgiOiIxZjY3YWZiNDk3MGVhNGMzZmU1MzUwMjFhNWZjOGJhMTY5NjhhMDI2In0= --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Anthonios Partheniou <partheniou@google.com>
1 parent 6e92883 commit fffe7a5

34 files changed

+6319
-658
lines changed

packages/google-cloud-dataplex/google/cloud/dataplex/__init__.py

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,12 @@
5959
Aspect,
6060
AspectSource,
6161
AspectType,
62+
CancelMetadataJobRequest,
6263
CreateAspectTypeRequest,
6364
CreateEntryGroupRequest,
6465
CreateEntryRequest,
6566
CreateEntryTypeRequest,
67+
CreateMetadataJobRequest,
6668
DeleteAspectTypeRequest,
6769
DeleteEntryGroupRequest,
6870
DeleteEntryRequest,
@@ -76,6 +78,8 @@
7678
GetEntryGroupRequest,
7779
GetEntryRequest,
7880
GetEntryTypeRequest,
81+
GetMetadataJobRequest,
82+
ImportItem,
7983
ListAspectTypesRequest,
8084
ListAspectTypesResponse,
8185
ListEntriesRequest,
@@ -84,7 +88,10 @@
8488
ListEntryGroupsResponse,
8589
ListEntryTypesRequest,
8690
ListEntryTypesResponse,
91+
ListMetadataJobsRequest,
92+
ListMetadataJobsResponse,
8793
LookupEntryRequest,
94+
MetadataJob,
8895
SearchEntriesRequest,
8996
SearchEntriesResponse,
9097
SearchEntriesResult,
@@ -102,6 +109,10 @@
102109
ListContentResponse,
103110
UpdateContentRequest,
104111
)
112+
from google.cloud.dataplex_v1.types.data_discovery import (
113+
DataDiscoveryResult,
114+
DataDiscoverySpec,
115+
)
105116
from google.cloud.dataplex_v1.types.data_profile import (
106117
DataProfileResult,
107118
DataProfileSpec,
@@ -259,10 +270,12 @@
259270
"Aspect",
260271
"AspectSource",
261272
"AspectType",
273+
"CancelMetadataJobRequest",
262274
"CreateAspectTypeRequest",
263275
"CreateEntryGroupRequest",
264276
"CreateEntryRequest",
265277
"CreateEntryTypeRequest",
278+
"CreateMetadataJobRequest",
266279
"DeleteAspectTypeRequest",
267280
"DeleteEntryGroupRequest",
268281
"DeleteEntryRequest",
@@ -275,6 +288,8 @@
275288
"GetEntryGroupRequest",
276289
"GetEntryRequest",
277290
"GetEntryTypeRequest",
291+
"GetMetadataJobRequest",
292+
"ImportItem",
278293
"ListAspectTypesRequest",
279294
"ListAspectTypesResponse",
280295
"ListEntriesRequest",
@@ -283,7 +298,10 @@
283298
"ListEntryGroupsResponse",
284299
"ListEntryTypesRequest",
285300
"ListEntryTypesResponse",
301+
"ListMetadataJobsRequest",
302+
"ListMetadataJobsResponse",
286303
"LookupEntryRequest",
304+
"MetadataJob",
287305
"SearchEntriesRequest",
288306
"SearchEntriesResponse",
289307
"SearchEntriesResult",
@@ -299,6 +317,8 @@
299317
"ListContentRequest",
300318
"ListContentResponse",
301319
"UpdateContentRequest",
320+
"DataDiscoveryResult",
321+
"DataDiscoverySpec",
302322
"DataProfileResult",
303323
"DataProfileSpec",
304324
"DataQualityColumnResult",

packages/google-cloud-dataplex/google/cloud/dataplex/gapic_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = "2.3.1" # {x-release-please-version}
16+
__version__ = "0.0.0" # {x-release-please-version}

packages/google-cloud-dataplex/google/cloud/dataplex_v1/__init__.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,12 @@
3535
Aspect,
3636
AspectSource,
3737
AspectType,
38+
CancelMetadataJobRequest,
3839
CreateAspectTypeRequest,
3940
CreateEntryGroupRequest,
4041
CreateEntryRequest,
4142
CreateEntryTypeRequest,
43+
CreateMetadataJobRequest,
4244
DeleteAspectTypeRequest,
4345
DeleteEntryGroupRequest,
4446
DeleteEntryRequest,
@@ -52,6 +54,8 @@
5254
GetEntryGroupRequest,
5355
GetEntryRequest,
5456
GetEntryTypeRequest,
57+
GetMetadataJobRequest,
58+
ImportItem,
5559
ListAspectTypesRequest,
5660
ListAspectTypesResponse,
5761
ListEntriesRequest,
@@ -60,7 +64,10 @@
6064
ListEntryGroupsResponse,
6165
ListEntryTypesRequest,
6266
ListEntryTypesResponse,
67+
ListMetadataJobsRequest,
68+
ListMetadataJobsResponse,
6369
LookupEntryRequest,
70+
MetadataJob,
6471
SearchEntriesRequest,
6572
SearchEntriesResponse,
6673
SearchEntriesResult,
@@ -78,6 +85,7 @@
7885
ListContentResponse,
7986
UpdateContentRequest,
8087
)
88+
from .types.data_discovery import DataDiscoveryResult, DataDiscoverySpec
8189
from .types.data_profile import DataProfileResult, DataProfileSpec
8290
from .types.data_quality import (
8391
DataQualityColumnResult,
@@ -220,6 +228,7 @@
220228
"Asset",
221229
"AssetStatus",
222230
"CancelJobRequest",
231+
"CancelMetadataJobRequest",
223232
"CatalogServiceClient",
224233
"Content",
225234
"ContentServiceClient",
@@ -236,12 +245,15 @@
236245
"CreateEntryTypeRequest",
237246
"CreateEnvironmentRequest",
238247
"CreateLakeRequest",
248+
"CreateMetadataJobRequest",
239249
"CreatePartitionRequest",
240250
"CreateTaskRequest",
241251
"CreateZoneRequest",
242252
"DataAccessSpec",
243253
"DataAttribute",
244254
"DataAttributeBinding",
255+
"DataDiscoveryResult",
256+
"DataDiscoverySpec",
245257
"DataProfileResult",
246258
"DataProfileSpec",
247259
"DataQualityColumnResult",
@@ -302,10 +314,12 @@
302314
"GetEnvironmentRequest",
303315
"GetJobRequest",
304316
"GetLakeRequest",
317+
"GetMetadataJobRequest",
305318
"GetPartitionRequest",
306319
"GetTaskRequest",
307320
"GetZoneRequest",
308321
"GovernanceEvent",
322+
"ImportItem",
309323
"Job",
310324
"JobEvent",
311325
"Lake",
@@ -342,6 +356,8 @@
342356
"ListLakeActionsRequest",
343357
"ListLakesRequest",
344358
"ListLakesResponse",
359+
"ListMetadataJobsRequest",
360+
"ListMetadataJobsResponse",
345361
"ListPartitionsRequest",
346362
"ListPartitionsResponse",
347363
"ListSessionsRequest",
@@ -352,6 +368,7 @@
352368
"ListZonesRequest",
353369
"ListZonesResponse",
354370
"LookupEntryRequest",
371+
"MetadataJob",
355372
"MetadataServiceClient",
356373
"OperationMetadata",
357374
"Partition",

packages/google-cloud-dataplex/google/cloud/dataplex_v1/gapic_metadata.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@
1010
"grpc": {
1111
"libraryClient": "CatalogServiceClient",
1212
"rpcs": {
13+
"CancelMetadataJob": {
14+
"methods": [
15+
"cancel_metadata_job"
16+
]
17+
},
1318
"CreateAspectType": {
1419
"methods": [
1520
"create_aspect_type"
@@ -30,6 +35,11 @@
3035
"create_entry_type"
3136
]
3237
},
38+
"CreateMetadataJob": {
39+
"methods": [
40+
"create_metadata_job"
41+
]
42+
},
3343
"DeleteAspectType": {
3444
"methods": [
3545
"delete_aspect_type"
@@ -70,6 +80,11 @@
7080
"get_entry_type"
7181
]
7282
},
83+
"GetMetadataJob": {
84+
"methods": [
85+
"get_metadata_job"
86+
]
87+
},
7388
"ListAspectTypes": {
7489
"methods": [
7590
"list_aspect_types"
@@ -90,6 +105,11 @@
90105
"list_entry_types"
91106
]
92107
},
108+
"ListMetadataJobs": {
109+
"methods": [
110+
"list_metadata_jobs"
111+
]
112+
},
93113
"LookupEntry": {
94114
"methods": [
95115
"lookup_entry"
@@ -125,6 +145,11 @@
125145
"grpc-async": {
126146
"libraryClient": "CatalogServiceAsyncClient",
127147
"rpcs": {
148+
"CancelMetadataJob": {
149+
"methods": [
150+
"cancel_metadata_job"
151+
]
152+
},
128153
"CreateAspectType": {
129154
"methods": [
130155
"create_aspect_type"
@@ -145,6 +170,11 @@
145170
"create_entry_type"
146171
]
147172
},
173+
"CreateMetadataJob": {
174+
"methods": [
175+
"create_metadata_job"
176+
]
177+
},
148178
"DeleteAspectType": {
149179
"methods": [
150180
"delete_aspect_type"
@@ -185,6 +215,11 @@
185215
"get_entry_type"
186216
]
187217
},
218+
"GetMetadataJob": {
219+
"methods": [
220+
"get_metadata_job"
221+
]
222+
},
188223
"ListAspectTypes": {
189224
"methods": [
190225
"list_aspect_types"
@@ -205,6 +240,11 @@
205240
"list_entry_types"
206241
]
207242
},
243+
"ListMetadataJobs": {
244+
"methods": [
245+
"list_metadata_jobs"
246+
]
247+
},
208248
"LookupEntry": {
209249
"methods": [
210250
"lookup_entry"

packages/google-cloud-dataplex/google/cloud/dataplex_v1/gapic_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = "2.3.1" # {x-release-please-version}
16+
__version__ = "0.0.0" # {x-release-please-version}

0 commit comments

Comments
 (0)