google-cloud-dataplex-v1 0.19.0 → 0.21.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/AUTHENTICATION.md +4 -4
- data/README.md +3 -3
- data/lib/google/cloud/dataplex/v1/bindings_override.rb +1 -1
- data/lib/google/cloud/dataplex/v1/catalog_pb.rb +101 -0
- data/lib/google/cloud/dataplex/v1/catalog_service/client.rb +2822 -0
- data/lib/google/cloud/dataplex/v1/catalog_service/credentials.rb +47 -0
- data/lib/google/cloud/dataplex/v1/catalog_service/operations.rb +809 -0
- data/lib/google/cloud/dataplex/v1/catalog_service/paths.rb +128 -0
- data/lib/google/cloud/dataplex/v1/catalog_service/rest/client.rb +2647 -0
- data/lib/google/cloud/dataplex/v1/catalog_service/rest/operations.rb +902 -0
- data/lib/google/cloud/dataplex/v1/catalog_service/rest/service_stub.rb +1375 -0
- data/lib/google/cloud/dataplex/v1/catalog_service/rest.rb +58 -0
- data/lib/google/cloud/dataplex/v1/catalog_service.rb +60 -0
- data/lib/google/cloud/dataplex/v1/catalog_services_pb.rb +91 -0
- data/lib/google/cloud/dataplex/v1/content_service/client.rb +19 -8
- data/lib/google/cloud/dataplex/v1/content_service/rest/client.rb +19 -8
- data/lib/google/cloud/dataplex/v1/data_quality_pb.rb +7 -1
- data/lib/google/cloud/dataplex/v1/data_scan_service/client.rb +115 -8
- data/lib/google/cloud/dataplex/v1/data_scan_service/operations.rb +13 -5
- data/lib/google/cloud/dataplex/v1/data_scan_service/rest/client.rb +108 -8
- data/lib/google/cloud/dataplex/v1/data_scan_service/rest/operations.rb +11 -4
- data/lib/google/cloud/dataplex/v1/data_scan_service/rest/service_stub.rb +68 -0
- data/lib/google/cloud/dataplex/v1/data_taxonomy_service/client.rb +33 -15
- data/lib/google/cloud/dataplex/v1/data_taxonomy_service/operations.rb +13 -5
- data/lib/google/cloud/dataplex/v1/data_taxonomy_service/rest/client.rb +33 -15
- data/lib/google/cloud/dataplex/v1/data_taxonomy_service/rest/operations.rb +11 -4
- data/lib/google/cloud/dataplex/v1/dataplex_service/client.rb +69 -33
- data/lib/google/cloud/dataplex/v1/dataplex_service/operations.rb +13 -5
- data/lib/google/cloud/dataplex/v1/dataplex_service/rest/client.rb +69 -33
- data/lib/google/cloud/dataplex/v1/dataplex_service/rest/operations.rb +11 -4
- data/lib/google/cloud/dataplex/v1/datascans_pb.rb +4 -2
- data/lib/google/cloud/dataplex/v1/datascans_services_pb.rb +2 -0
- data/lib/google/cloud/dataplex/v1/logs_pb.rb +1 -1
- data/lib/google/cloud/dataplex/v1/metadata_service/client.rb +21 -9
- data/lib/google/cloud/dataplex/v1/metadata_service/rest/client.rb +21 -9
- data/lib/google/cloud/dataplex/v1/rest.rb +3 -2
- data/lib/google/cloud/dataplex/v1/version.rb +1 -1
- data/lib/google/cloud/dataplex/v1.rb +4 -3
- data/proto_docs/google/api/client.rb +4 -0
- data/proto_docs/google/cloud/dataplex/v1/catalog.rb +1092 -0
- data/proto_docs/google/cloud/dataplex/v1/data_quality.rb +86 -0
- data/proto_docs/google/cloud/dataplex/v1/datascans.rb +21 -0
- data/proto_docs/google/cloud/dataplex/v1/logs.rb +8 -0
- data/proto_docs/google/protobuf/struct.rb +96 -0
- metadata +15 -2
@@ -38,6 +38,9 @@ module Google
|
|
38
38
|
# systems including Cloud Storage and BigQuery.
|
39
39
|
#
|
40
40
|
class Client
|
41
|
+
# @private
|
42
|
+
API_VERSION = ""
|
43
|
+
|
41
44
|
# @private
|
42
45
|
DEFAULT_ENDPOINT_TEMPLATE = "dataplex.$UNIVERSE_DOMAIN$"
|
43
46
|
|
@@ -387,12 +390,13 @@ module Google
|
|
387
390
|
# Customize the options with defaults
|
388
391
|
call_metadata = @config.rpcs.create_lake.metadata.to_h
|
389
392
|
|
390
|
-
# Set x-goog-api-client
|
393
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
391
394
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
392
395
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
393
396
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
394
397
|
transports_version_send: [:rest]
|
395
398
|
|
399
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
396
400
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
397
401
|
|
398
402
|
options.apply_defaults timeout: @config.rpcs.create_lake.timeout,
|
@@ -479,12 +483,13 @@ module Google
|
|
479
483
|
# Customize the options with defaults
|
480
484
|
call_metadata = @config.rpcs.update_lake.metadata.to_h
|
481
485
|
|
482
|
-
# Set x-goog-api-client
|
486
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
483
487
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
484
488
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
485
489
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
486
490
|
transports_version_send: [:rest]
|
487
491
|
|
492
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
488
493
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
489
494
|
|
490
495
|
options.apply_defaults timeout: @config.rpcs.update_lake.timeout,
|
@@ -567,12 +572,13 @@ module Google
|
|
567
572
|
# Customize the options with defaults
|
568
573
|
call_metadata = @config.rpcs.delete_lake.metadata.to_h
|
569
574
|
|
570
|
-
# Set x-goog-api-client
|
575
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
571
576
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
572
577
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
573
578
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
574
579
|
transports_version_send: [:rest]
|
575
580
|
|
581
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
576
582
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
577
583
|
|
578
584
|
options.apply_defaults timeout: @config.rpcs.delete_lake.timeout,
|
@@ -664,12 +670,13 @@ module Google
|
|
664
670
|
# Customize the options with defaults
|
665
671
|
call_metadata = @config.rpcs.list_lakes.metadata.to_h
|
666
672
|
|
667
|
-
# Set x-goog-api-client
|
673
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
668
674
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
669
675
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
670
676
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
671
677
|
transports_version_send: [:rest]
|
672
678
|
|
679
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
673
680
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
674
681
|
|
675
682
|
options.apply_defaults timeout: @config.rpcs.list_lakes.timeout,
|
@@ -743,12 +750,13 @@ module Google
|
|
743
750
|
# Customize the options with defaults
|
744
751
|
call_metadata = @config.rpcs.get_lake.metadata.to_h
|
745
752
|
|
746
|
-
# Set x-goog-api-client
|
753
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
747
754
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
748
755
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
749
756
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
750
757
|
transports_version_send: [:rest]
|
751
758
|
|
759
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
752
760
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
753
761
|
|
754
762
|
options.apply_defaults timeout: @config.rpcs.get_lake.timeout,
|
@@ -835,12 +843,13 @@ module Google
|
|
835
843
|
# Customize the options with defaults
|
836
844
|
call_metadata = @config.rpcs.list_lake_actions.metadata.to_h
|
837
845
|
|
838
|
-
# Set x-goog-api-client
|
846
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
839
847
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
840
848
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
841
849
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
842
850
|
transports_version_send: [:rest]
|
843
851
|
|
852
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
844
853
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
845
854
|
|
846
855
|
options.apply_defaults timeout: @config.rpcs.list_lake_actions.timeout,
|
@@ -937,12 +946,13 @@ module Google
|
|
937
946
|
# Customize the options with defaults
|
938
947
|
call_metadata = @config.rpcs.create_zone.metadata.to_h
|
939
948
|
|
940
|
-
# Set x-goog-api-client
|
949
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
941
950
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
942
951
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
943
952
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
944
953
|
transports_version_send: [:rest]
|
945
954
|
|
955
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
946
956
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
947
957
|
|
948
958
|
options.apply_defaults timeout: @config.rpcs.create_zone.timeout,
|
@@ -1029,12 +1039,13 @@ module Google
|
|
1029
1039
|
# Customize the options with defaults
|
1030
1040
|
call_metadata = @config.rpcs.update_zone.metadata.to_h
|
1031
1041
|
|
1032
|
-
# Set x-goog-api-client
|
1042
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
1033
1043
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
1034
1044
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
1035
1045
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
1036
1046
|
transports_version_send: [:rest]
|
1037
1047
|
|
1048
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
1038
1049
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
1039
1050
|
|
1040
1051
|
options.apply_defaults timeout: @config.rpcs.update_zone.timeout,
|
@@ -1117,12 +1128,13 @@ module Google
|
|
1117
1128
|
# Customize the options with defaults
|
1118
1129
|
call_metadata = @config.rpcs.delete_zone.metadata.to_h
|
1119
1130
|
|
1120
|
-
# Set x-goog-api-client
|
1131
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
1121
1132
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
1122
1133
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
1123
1134
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
1124
1135
|
transports_version_send: [:rest]
|
1125
1136
|
|
1137
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
1126
1138
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
1127
1139
|
|
1128
1140
|
options.apply_defaults timeout: @config.rpcs.delete_zone.timeout,
|
@@ -1213,12 +1225,13 @@ module Google
|
|
1213
1225
|
# Customize the options with defaults
|
1214
1226
|
call_metadata = @config.rpcs.list_zones.metadata.to_h
|
1215
1227
|
|
1216
|
-
# Set x-goog-api-client
|
1228
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
1217
1229
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
1218
1230
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
1219
1231
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
1220
1232
|
transports_version_send: [:rest]
|
1221
1233
|
|
1234
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
1222
1235
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
1223
1236
|
|
1224
1237
|
options.apply_defaults timeout: @config.rpcs.list_zones.timeout,
|
@@ -1293,12 +1306,13 @@ module Google
|
|
1293
1306
|
# Customize the options with defaults
|
1294
1307
|
call_metadata = @config.rpcs.get_zone.metadata.to_h
|
1295
1308
|
|
1296
|
-
# Set x-goog-api-client
|
1309
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
1297
1310
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
1298
1311
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
1299
1312
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
1300
1313
|
transports_version_send: [:rest]
|
1301
1314
|
|
1315
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
1302
1316
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
1303
1317
|
|
1304
1318
|
options.apply_defaults timeout: @config.rpcs.get_zone.timeout,
|
@@ -1385,12 +1399,13 @@ module Google
|
|
1385
1399
|
# Customize the options with defaults
|
1386
1400
|
call_metadata = @config.rpcs.list_zone_actions.metadata.to_h
|
1387
1401
|
|
1388
|
-
# Set x-goog-api-client
|
1402
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
1389
1403
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
1390
1404
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
1391
1405
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
1392
1406
|
transports_version_send: [:rest]
|
1393
1407
|
|
1408
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
1394
1409
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
1395
1410
|
|
1396
1411
|
options.apply_defaults timeout: @config.rpcs.list_zone_actions.timeout,
|
@@ -1486,12 +1501,13 @@ module Google
|
|
1486
1501
|
# Customize the options with defaults
|
1487
1502
|
call_metadata = @config.rpcs.create_asset.metadata.to_h
|
1488
1503
|
|
1489
|
-
# Set x-goog-api-client
|
1504
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
1490
1505
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
1491
1506
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
1492
1507
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
1493
1508
|
transports_version_send: [:rest]
|
1494
1509
|
|
1510
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
1495
1511
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
1496
1512
|
|
1497
1513
|
options.apply_defaults timeout: @config.rpcs.create_asset.timeout,
|
@@ -1578,12 +1594,13 @@ module Google
|
|
1578
1594
|
# Customize the options with defaults
|
1579
1595
|
call_metadata = @config.rpcs.update_asset.metadata.to_h
|
1580
1596
|
|
1581
|
-
# Set x-goog-api-client
|
1597
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
1582
1598
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
1583
1599
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
1584
1600
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
1585
1601
|
transports_version_send: [:rest]
|
1586
1602
|
|
1603
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
1587
1604
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
1588
1605
|
|
1589
1606
|
options.apply_defaults timeout: @config.rpcs.update_asset.timeout,
|
@@ -1666,12 +1683,13 @@ module Google
|
|
1666
1683
|
# Customize the options with defaults
|
1667
1684
|
call_metadata = @config.rpcs.delete_asset.metadata.to_h
|
1668
1685
|
|
1669
|
-
# Set x-goog-api-client
|
1686
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
1670
1687
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
1671
1688
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
1672
1689
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
1673
1690
|
transports_version_send: [:rest]
|
1674
1691
|
|
1692
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
1675
1693
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
1676
1694
|
|
1677
1695
|
options.apply_defaults timeout: @config.rpcs.delete_asset.timeout,
|
@@ -1763,12 +1781,13 @@ module Google
|
|
1763
1781
|
# Customize the options with defaults
|
1764
1782
|
call_metadata = @config.rpcs.list_assets.metadata.to_h
|
1765
1783
|
|
1766
|
-
# Set x-goog-api-client
|
1784
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
1767
1785
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
1768
1786
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
1769
1787
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
1770
1788
|
transports_version_send: [:rest]
|
1771
1789
|
|
1790
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
1772
1791
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
1773
1792
|
|
1774
1793
|
options.apply_defaults timeout: @config.rpcs.list_assets.timeout,
|
@@ -1843,12 +1862,13 @@ module Google
|
|
1843
1862
|
# Customize the options with defaults
|
1844
1863
|
call_metadata = @config.rpcs.get_asset.metadata.to_h
|
1845
1864
|
|
1846
|
-
# Set x-goog-api-client
|
1865
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
1847
1866
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
1848
1867
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
1849
1868
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
1850
1869
|
transports_version_send: [:rest]
|
1851
1870
|
|
1871
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
1852
1872
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
1853
1873
|
|
1854
1874
|
options.apply_defaults timeout: @config.rpcs.get_asset.timeout,
|
@@ -1935,12 +1955,13 @@ module Google
|
|
1935
1955
|
# Customize the options with defaults
|
1936
1956
|
call_metadata = @config.rpcs.list_asset_actions.metadata.to_h
|
1937
1957
|
|
1938
|
-
# Set x-goog-api-client
|
1958
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
1939
1959
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
1940
1960
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
1941
1961
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
1942
1962
|
transports_version_send: [:rest]
|
1943
1963
|
|
1964
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
1944
1965
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
1945
1966
|
|
1946
1967
|
options.apply_defaults timeout: @config.rpcs.list_asset_actions.timeout,
|
@@ -2029,12 +2050,13 @@ module Google
|
|
2029
2050
|
# Customize the options with defaults
|
2030
2051
|
call_metadata = @config.rpcs.create_task.metadata.to_h
|
2031
2052
|
|
2032
|
-
# Set x-goog-api-client
|
2053
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
2033
2054
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
2034
2055
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
2035
2056
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
2036
2057
|
transports_version_send: [:rest]
|
2037
2058
|
|
2059
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
2038
2060
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
2039
2061
|
|
2040
2062
|
options.apply_defaults timeout: @config.rpcs.create_task.timeout,
|
@@ -2121,12 +2143,13 @@ module Google
|
|
2121
2143
|
# Customize the options with defaults
|
2122
2144
|
call_metadata = @config.rpcs.update_task.metadata.to_h
|
2123
2145
|
|
2124
|
-
# Set x-goog-api-client
|
2146
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
2125
2147
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
2126
2148
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
2127
2149
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
2128
2150
|
transports_version_send: [:rest]
|
2129
2151
|
|
2152
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
2130
2153
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
2131
2154
|
|
2132
2155
|
options.apply_defaults timeout: @config.rpcs.update_task.timeout,
|
@@ -2208,12 +2231,13 @@ module Google
|
|
2208
2231
|
# Customize the options with defaults
|
2209
2232
|
call_metadata = @config.rpcs.delete_task.metadata.to_h
|
2210
2233
|
|
2211
|
-
# Set x-goog-api-client
|
2234
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
2212
2235
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
2213
2236
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
2214
2237
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
2215
2238
|
transports_version_send: [:rest]
|
2216
2239
|
|
2240
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
2217
2241
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
2218
2242
|
|
2219
2243
|
options.apply_defaults timeout: @config.rpcs.delete_task.timeout,
|
@@ -2304,12 +2328,13 @@ module Google
|
|
2304
2328
|
# Customize the options with defaults
|
2305
2329
|
call_metadata = @config.rpcs.list_tasks.metadata.to_h
|
2306
2330
|
|
2307
|
-
# Set x-goog-api-client
|
2331
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
2308
2332
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
2309
2333
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
2310
2334
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
2311
2335
|
transports_version_send: [:rest]
|
2312
2336
|
|
2337
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
2313
2338
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
2314
2339
|
|
2315
2340
|
options.apply_defaults timeout: @config.rpcs.list_tasks.timeout,
|
@@ -2383,12 +2408,13 @@ module Google
|
|
2383
2408
|
# Customize the options with defaults
|
2384
2409
|
call_metadata = @config.rpcs.get_task.metadata.to_h
|
2385
2410
|
|
2386
|
-
# Set x-goog-api-client
|
2411
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
2387
2412
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
2388
2413
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
2389
2414
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
2390
2415
|
transports_version_send: [:rest]
|
2391
2416
|
|
2417
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
2392
2418
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
2393
2419
|
|
2394
2420
|
options.apply_defaults timeout: @config.rpcs.get_task.timeout,
|
@@ -2475,12 +2501,13 @@ module Google
|
|
2475
2501
|
# Customize the options with defaults
|
2476
2502
|
call_metadata = @config.rpcs.list_jobs.metadata.to_h
|
2477
2503
|
|
2478
|
-
# Set x-goog-api-client
|
2504
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
2479
2505
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
2480
2506
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
2481
2507
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
2482
2508
|
transports_version_send: [:rest]
|
2483
2509
|
|
2510
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
2484
2511
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
2485
2512
|
|
2486
2513
|
options.apply_defaults timeout: @config.rpcs.list_jobs.timeout,
|
@@ -2571,12 +2598,13 @@ module Google
|
|
2571
2598
|
# Customize the options with defaults
|
2572
2599
|
call_metadata = @config.rpcs.run_task.metadata.to_h
|
2573
2600
|
|
2574
|
-
# Set x-goog-api-client
|
2601
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
2575
2602
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
2576
2603
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
2577
2604
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
2578
2605
|
transports_version_send: [:rest]
|
2579
2606
|
|
2607
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
2580
2608
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
2581
2609
|
|
2582
2610
|
options.apply_defaults timeout: @config.rpcs.run_task.timeout,
|
@@ -2650,12 +2678,13 @@ module Google
|
|
2650
2678
|
# Customize the options with defaults
|
2651
2679
|
call_metadata = @config.rpcs.get_job.metadata.to_h
|
2652
2680
|
|
2653
|
-
# Set x-goog-api-client
|
2681
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
2654
2682
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
2655
2683
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
2656
2684
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
2657
2685
|
transports_version_send: [:rest]
|
2658
2686
|
|
2687
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
2659
2688
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
2660
2689
|
|
2661
2690
|
options.apply_defaults timeout: @config.rpcs.get_job.timeout,
|
@@ -2729,12 +2758,13 @@ module Google
|
|
2729
2758
|
# Customize the options with defaults
|
2730
2759
|
call_metadata = @config.rpcs.cancel_job.metadata.to_h
|
2731
2760
|
|
2732
|
-
# Set x-goog-api-client
|
2761
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
2733
2762
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
2734
2763
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
2735
2764
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
2736
2765
|
transports_version_send: [:rest]
|
2737
2766
|
|
2767
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
2738
2768
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
2739
2769
|
|
2740
2770
|
options.apply_defaults timeout: @config.rpcs.cancel_job.timeout,
|
@@ -2827,12 +2857,13 @@ module Google
|
|
2827
2857
|
# Customize the options with defaults
|
2828
2858
|
call_metadata = @config.rpcs.create_environment.metadata.to_h
|
2829
2859
|
|
2830
|
-
# Set x-goog-api-client
|
2860
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
2831
2861
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
2832
2862
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
2833
2863
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
2834
2864
|
transports_version_send: [:rest]
|
2835
2865
|
|
2866
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
2836
2867
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
2837
2868
|
|
2838
2869
|
options.apply_defaults timeout: @config.rpcs.create_environment.timeout,
|
@@ -2919,12 +2950,13 @@ module Google
|
|
2919
2950
|
# Customize the options with defaults
|
2920
2951
|
call_metadata = @config.rpcs.update_environment.metadata.to_h
|
2921
2952
|
|
2922
|
-
# Set x-goog-api-client
|
2953
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
2923
2954
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
2924
2955
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
2925
2956
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
2926
2957
|
transports_version_send: [:rest]
|
2927
2958
|
|
2959
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
2928
2960
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
2929
2961
|
|
2930
2962
|
options.apply_defaults timeout: @config.rpcs.update_environment.timeout,
|
@@ -3007,12 +3039,13 @@ module Google
|
|
3007
3039
|
# Customize the options with defaults
|
3008
3040
|
call_metadata = @config.rpcs.delete_environment.metadata.to_h
|
3009
3041
|
|
3010
|
-
# Set x-goog-api-client
|
3042
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
3011
3043
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
3012
3044
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
3013
3045
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
3014
3046
|
transports_version_send: [:rest]
|
3015
3047
|
|
3048
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
3016
3049
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
3017
3050
|
|
3018
3051
|
options.apply_defaults timeout: @config.rpcs.delete_environment.timeout,
|
@@ -3105,12 +3138,13 @@ module Google
|
|
3105
3138
|
# Customize the options with defaults
|
3106
3139
|
call_metadata = @config.rpcs.list_environments.metadata.to_h
|
3107
3140
|
|
3108
|
-
# Set x-goog-api-client
|
3141
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
3109
3142
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
3110
3143
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
3111
3144
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
3112
3145
|
transports_version_send: [:rest]
|
3113
3146
|
|
3147
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
3114
3148
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
3115
3149
|
|
3116
3150
|
options.apply_defaults timeout: @config.rpcs.list_environments.timeout,
|
@@ -3185,12 +3219,13 @@ module Google
|
|
3185
3219
|
# Customize the options with defaults
|
3186
3220
|
call_metadata = @config.rpcs.get_environment.metadata.to_h
|
3187
3221
|
|
3188
|
-
# Set x-goog-api-client
|
3222
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
3189
3223
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
3190
3224
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
3191
3225
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
3192
3226
|
transports_version_send: [:rest]
|
3193
3227
|
|
3228
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
3194
3229
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
3195
3230
|
|
3196
3231
|
options.apply_defaults timeout: @config.rpcs.get_environment.timeout,
|
@@ -3287,12 +3322,13 @@ module Google
|
|
3287
3322
|
# Customize the options with defaults
|
3288
3323
|
call_metadata = @config.rpcs.list_sessions.metadata.to_h
|
3289
3324
|
|
3290
|
-
# Set x-goog-api-client
|
3325
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
3291
3326
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
3292
3327
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
3293
3328
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
3294
3329
|
transports_version_send: [:rest]
|
3295
3330
|
|
3331
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
3296
3332
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
3297
3333
|
|
3298
3334
|
options.apply_defaults timeout: @config.rpcs.list_sessions.timeout,
|
@@ -26,6 +26,9 @@ module Google
|
|
26
26
|
module Rest
|
27
27
|
# Service that implements Longrunning Operations API.
|
28
28
|
class Operations
|
29
|
+
# @private
|
30
|
+
API_VERSION = ""
|
31
|
+
|
29
32
|
# @private
|
30
33
|
DEFAULT_ENDPOINT_TEMPLATE = "dataplex.$UNIVERSE_DOMAIN$"
|
31
34
|
|
@@ -181,12 +184,13 @@ module Google
|
|
181
184
|
# Customize the options with defaults
|
182
185
|
call_metadata = @config.rpcs.list_operations.metadata.to_h
|
183
186
|
|
184
|
-
# Set x-goog-api-client
|
187
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
185
188
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
186
189
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
187
190
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
188
191
|
transports_version_send: [:rest]
|
189
192
|
|
193
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
190
194
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
191
195
|
|
192
196
|
options.apply_defaults timeout: @config.rpcs.list_operations.timeout,
|
@@ -269,12 +273,13 @@ module Google
|
|
269
273
|
# Customize the options with defaults
|
270
274
|
call_metadata = @config.rpcs.get_operation.metadata.to_h
|
271
275
|
|
272
|
-
# Set x-goog-api-client
|
276
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
273
277
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
274
278
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
275
279
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
276
280
|
transports_version_send: [:rest]
|
277
281
|
|
282
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
278
283
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
279
284
|
|
280
285
|
options.apply_defaults timeout: @config.rpcs.get_operation.timeout,
|
@@ -351,12 +356,13 @@ module Google
|
|
351
356
|
# Customize the options with defaults
|
352
357
|
call_metadata = @config.rpcs.delete_operation.metadata.to_h
|
353
358
|
|
354
|
-
# Set x-goog-api-client
|
359
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
355
360
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
356
361
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
357
362
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
358
363
|
transports_version_send: [:rest]
|
359
364
|
|
365
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
360
366
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
361
367
|
|
362
368
|
options.apply_defaults timeout: @config.rpcs.delete_operation.timeout,
|
@@ -438,12 +444,13 @@ module Google
|
|
438
444
|
# Customize the options with defaults
|
439
445
|
call_metadata = @config.rpcs.cancel_operation.metadata.to_h
|
440
446
|
|
441
|
-
# Set x-goog-api-client
|
447
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
442
448
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
443
449
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
444
450
|
gapic_version: ::Google::Cloud::Dataplex::V1::VERSION,
|
445
451
|
transports_version_send: [:rest]
|
446
452
|
|
453
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
447
454
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
448
455
|
|
449
456
|
options.apply_defaults timeout: @config.rpcs.cancel_operation.timeout,
|
@@ -19,7 +19,7 @@ require 'google/protobuf/field_mask_pb'
|
|
19
19
|
require 'google/protobuf/timestamp_pb'
|
20
20
|
|
21
21
|
|
22
|
-
descriptor_data = "\n(google/cloud/dataplex/v1/datascans.proto\x12\x18google.cloud.dataplex.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a+google/cloud/dataplex/v1/data_profile.proto\x1a+google/cloud/dataplex/v1/data_quality.proto\x1a)google/cloud/dataplex/v1/processing.proto\x1a(google/cloud/dataplex/v1/resources.proto\x1a&google/cloud/dataplex/v1/service.proto\x1a#google/longrunning/operations.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xc5\x01\n\x15\x43reateDataScanRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12:\n\tdata_scan\x18\x02 \x01(\x0b\x32\".google.cloud.dataplex.v1.DataScanB\x03\xe0\x41\x02\x12\x19\n\x0c\x64\x61ta_scan_id\x18\x03 \x01(\tB\x03\xe0\x41\x02\x12\x1a\n\rvalidate_only\x18\x04 \x01(\x08\x42\x03\xe0\x41\x01\"\xa5\x01\n\x15UpdateDataScanRequest\x12:\n\tdata_scan\x18\x01 \x01(\x0b\x32\".google.cloud.dataplex.v1.DataScanB\x03\xe0\x41\x02\x12\x34\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\x12\x1a\n\rvalidate_only\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\"O\n\x15\x44\x65leteDataScanRequest\x12\x36\n\x04name\x18\x01 \x01(\tB(\xe0\x41\x02\xfa\x41\"\n dataplex.googleapis.com/DataScan\"\xdf\x01\n\x12GetDataScanRequest\x12\x36\n\x04name\x18\x01 \x01(\tB(\xe0\x41\x02\xfa\x41\"\n dataplex.googleapis.com/DataScan\x12L\n\x04view\x18\x02 \x01(\x0e\x32\x39.google.cloud.dataplex.v1.GetDataScanRequest.DataScanViewB\x03\xe0\x41\x01\"C\n\x0c\x44\x61taScanView\x12\x1e\n\x1a\x44\x41TA_SCAN_VIEW_UNSPECIFIED\x10\x00\x12\t\n\x05\x42\x41SIC\x10\x01\x12\x08\n\x04\x46ULL\x10\n\"\xae\x01\n\x14ListDataScansRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x05 \x01(\tB\x03\xe0\x41\x01\"}\n\x15ListDataScansResponse\x12\x36\n\ndata_scans\x18\x01 \x03(\x0b\x32\".google.cloud.dataplex.v1.DataScan\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"L\n\x12RunDataScanRequest\x12\x36\n\x04name\x18\x01 \x01(\tB(\xe0\x41\x02\xfa\x41\"\n dataplex.googleapis.com/DataScan\"I\n\x13RunDataScanResponse\x12\x32\n\x03job\x18\x01 \x01(\x0b\x32%.google.cloud.dataplex.v1.DataScanJob\"\xf2\x01\n\x15GetDataScanJobRequest\x12\x39\n\x04name\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\n#dataplex.googleapis.com/DataScanJob\x12R\n\x04view\x18\x02 \x01(\x0e\x32?.google.cloud.dataplex.v1.GetDataScanJobRequest.DataScanJobViewB\x03\xe0\x41\x01\"J\n\x0f\x44\x61taScanJobView\x12\"\n\x1e\x44\x41TA_SCAN_JOB_VIEW_UNSPECIFIED\x10\x00\x12\t\n\x05\x42\x41SIC\x10\x01\x12\x08\n\x04\x46ULL\x10\n\"\x99\x01\n\x17ListDataScanJobsRequest\x12\x38\n\x06parent\x18\x01 \x01(\tB(\xe0\x41\x02\xfa\x41\"\n dataplex.googleapis.com/DataScan\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\"r\n\x18ListDataScanJobsResponse\x12=\n\x0e\x64\x61ta_scan_jobs\x18\x01 \x03(\x0b\x32%.google.cloud.dataplex.v1.DataScanJob\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xb1\n\n\x08\x44\x61taScan\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x10\n\x03uid\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x18\n\x0b\x64\x65scription\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x19\n\x0c\x64isplay_name\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x43\n\x06labels\x18\x05 \x03(\x0b\x32..google.cloud.dataplex.v1.DataScan.LabelsEntryB\x03\xe0\x41\x01\x12\x33\n\x05state\x18\x06 \x01(\x0e\x32\x1f.google.cloud.dataplex.v1.StateB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x37\n\x04\x64\x61ta\x18\t \x01(\x0b\x32$.google.cloud.dataplex.v1.DataSourceB\x03\xe0\x41\x02\x12M\n\x0e\x65xecution_spec\x18\n \x01(\x0b\x32\x30.google.cloud.dataplex.v1.DataScan.ExecutionSpecB\x03\xe0\x41\x01\x12Q\n\x10\x65xecution_status\x18\x0b \x01(\x0b\x32\x32.google.cloud.dataplex.v1.DataScan.ExecutionStatusB\x03\xe0\x41\x03\x12\x39\n\x04type\x18\x0c \x01(\x0e\x32&.google.cloud.dataplex.v1.DataScanTypeB\x03\xe0\x41\x03\x12\x46\n\x11\x64\x61ta_quality_spec\x18\x64 \x01(\x0b\x32).google.cloud.dataplex.v1.DataQualitySpecH\x00\x12\x46\n\x11\x64\x61ta_profile_spec\x18\x65 \x01(\x0b\x32).google.cloud.dataplex.v1.DataProfileSpecH\x00\x12P\n\x13\x64\x61ta_quality_result\x18\xc8\x01 \x01(\x0b\x32+.google.cloud.dataplex.v1.DataQualityResultB\x03\xe0\x41\x03H\x01\x12P\n\x13\x64\x61ta_profile_result\x18\xc9\x01 \x01(\x0b\x32+.google.cloud.dataplex.v1.DataProfileResultB\x03\xe0\x41\x03H\x01\x1am\n\rExecutionSpec\x12\x37\n\x07trigger\x18\x01 \x01(\x0b\x32!.google.cloud.dataplex.v1.TriggerB\x03\xe0\x41\x01\x12\x14\n\x05\x66ield\x18\x64 \x01(\tB\x03\xe0\x41\x05H\x00\x42\r\n\x0bincremental\x1a\x85\x01\n\x0f\x45xecutionStatus\x12\x39\n\x15latest_job_start_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x37\n\x13latest_job_end_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:c\xea\x41`\n dataplex.googleapis.com/DataScan\x12<projects/{project}/locations/{location}/dataScans/{dataScan}B\x06\n\x04specB\x08\n\x06result\"\xe2\x06\n\x0b\x44\x61taScanJob\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x10\n\x03uid\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x33\n\nstart_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12?\n\x05state\x18\x05 \x01(\x0e\x32+.google.cloud.dataplex.v1.DataScanJob.StateB\x03\xe0\x41\x03\x12\x14\n\x07message\x18\x06 \x01(\tB\x03\xe0\x41\x03\x12\x39\n\x04type\x18\x07 \x01(\x0e\x32&.google.cloud.dataplex.v1.DataScanTypeB\x03\xe0\x41\x03\x12K\n\x11\x64\x61ta_quality_spec\x18\x64 \x01(\x0b\x32).google.cloud.dataplex.v1.DataQualitySpecB\x03\xe0\x41\x03H\x00\x12K\n\x11\x64\x61ta_profile_spec\x18\x65 \x01(\x0b\x32).google.cloud.dataplex.v1.DataProfileSpecB\x03\xe0\x41\x03H\x00\x12P\n\x13\x64\x61ta_quality_result\x18\xc8\x01 \x01(\x0b\x32+.google.cloud.dataplex.v1.DataQualityResultB\x03\xe0\x41\x03H\x01\x12P\n\x13\x64\x61ta_profile_result\x18\xc9\x01 \x01(\x0b\x32+.google.cloud.dataplex.v1.DataProfileResultB\x03\xe0\x41\x03H\x01\"q\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0b\n\x07RUNNING\x10\x01\x12\r\n\tCANCELING\x10\x02\x12\r\n\tCANCELLED\x10\x03\x12\r\n\tSUCCEEDED\x10\x04\x12\n\n\x06\x46\x41ILED\x10\x05\x12\x0b\n\x07PENDING\x10\x07:q\xea\x41n\n#dataplex.googleapis.com/DataScanJob\x12Gprojects/{project}/locations/{location}/dataScans/{dataScan}/jobs/{job}B\x06\n\x04specB\x08\n\x06result*R\n\x0c\x44\x61taScanType\x12\x1e\n\x1a\x44\x41TA_SCAN_TYPE_UNSPECIFIED\x10\x00\x12\x10\n\x0c\x44\x41TA_QUALITY\x10\x01\x12\x10\n\x0c\x44\x41TA_PROFILE\x10\x02\x32\xf2\x0c\n\x0f\x44\x61taScanService\x12\xe3\x01\n\x0e\x43reateDataScan\x12/.google.cloud.dataplex.v1.CreateDataScanRequest\x1a\x1d.google.longrunning.Operation\"\x80\x01\xca\x41\x1d\n\x08\x44\x61taScan\x12\x11OperationMetadata\xda\x41\x1dparent,data_scan,data_scan_id\x82\xd3\xe4\x93\x02:\"-/v1/{parent=projects/*/locations/*}/dataScans:\tdata_scan\x12\xe5\x01\n\x0eUpdateDataScan\x12/.google.cloud.dataplex.v1.UpdateDataScanRequest\x1a\x1d.google.longrunning.Operation\"\x82\x01\xca\x41\x1d\n\x08\x44\x61taScan\x12\x11OperationMetadata\xda\x41\x15\x64\x61ta_scan,update_mask\x82\xd3\xe4\x93\x02\x44\x32\x37/v1/{data_scan.name=projects/*/locations/*/dataScans/*}:\tdata_scan\x12\xcb\x01\n\x0e\x44\x65leteDataScan\x12/.google.cloud.dataplex.v1.DeleteDataScanRequest\x1a\x1d.google.longrunning.Operation\"i\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02/*-/v1/{name=projects/*/locations/*/dataScans/*}\x12\x9d\x01\n\x0bGetDataScan\x12,.google.cloud.dataplex.v1.GetDataScanRequest\x1a\".google.cloud.dataplex.v1.DataScan\"<\xda\x41\x04name\x82\xd3\xe4\x93\x02/\x12-/v1/{name=projects/*/locations/*/dataScans/*}\x12\xb0\x01\n\rListDataScans\x12..google.cloud.dataplex.v1.ListDataScansRequest\x1a/.google.cloud.dataplex.v1.ListDataScansResponse\">\xda\x41\x06parent\x82\xd3\xe4\x93\x02/\x12-/v1/{parent=projects/*/locations/*}/dataScans\x12\xaf\x01\n\x0bRunDataScan\x12,.google.cloud.dataplex.v1.RunDataScanRequest\x1a-.google.cloud.dataplex.v1.RunDataScanResponse\"C\xda\x41\x04name\x82\xd3\xe4\x93\x02\x36\"1/v1/{name=projects/*/locations/*/dataScans/*}:run:\x01*\x12\xad\x01\n\x0eGetDataScanJob\x12/.google.cloud.dataplex.v1.GetDataScanJobRequest\x1a%.google.cloud.dataplex.v1.DataScanJob\"C\xda\x41\x04name\x82\xd3\xe4\x93\x02\x36\x12\x34/v1/{name=projects/*/locations/*/dataScans/*/jobs/*}\x12\xc0\x01\n\x10ListDataScanJobs\x12\x31.google.cloud.dataplex.v1.ListDataScanJobsRequest\x1a\x32.google.cloud.dataplex.v1.ListDataScanJobsResponse\"E\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x36\x12\x34/v1/{parent=projects/*/locations/*/dataScans/*}/jobs\x1aK\xca\x41\x17\x64\x61taplex.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformBj\n\x1c\x63om.google.cloud.dataplex.v1B\x0e\x44\x61taScansProtoP\x01Z8cloud.google.com/go/dataplex/apiv1/dataplexpb;dataplexpbb\x06proto3"
|
22
|
+
descriptor_data = "\n(google/cloud/dataplex/v1/datascans.proto\x12\x18google.cloud.dataplex.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a+google/cloud/dataplex/v1/data_profile.proto\x1a+google/cloud/dataplex/v1/data_quality.proto\x1a)google/cloud/dataplex/v1/processing.proto\x1a(google/cloud/dataplex/v1/resources.proto\x1a&google/cloud/dataplex/v1/service.proto\x1a#google/longrunning/operations.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xc5\x01\n\x15\x43reateDataScanRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12:\n\tdata_scan\x18\x02 \x01(\x0b\x32\".google.cloud.dataplex.v1.DataScanB\x03\xe0\x41\x02\x12\x19\n\x0c\x64\x61ta_scan_id\x18\x03 \x01(\tB\x03\xe0\x41\x02\x12\x1a\n\rvalidate_only\x18\x04 \x01(\x08\x42\x03\xe0\x41\x01\"\xa5\x01\n\x15UpdateDataScanRequest\x12:\n\tdata_scan\x18\x01 \x01(\x0b\x32\".google.cloud.dataplex.v1.DataScanB\x03\xe0\x41\x02\x12\x34\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\x12\x1a\n\rvalidate_only\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\"O\n\x15\x44\x65leteDataScanRequest\x12\x36\n\x04name\x18\x01 \x01(\tB(\xe0\x41\x02\xfa\x41\"\n dataplex.googleapis.com/DataScan\"\xdf\x01\n\x12GetDataScanRequest\x12\x36\n\x04name\x18\x01 \x01(\tB(\xe0\x41\x02\xfa\x41\"\n dataplex.googleapis.com/DataScan\x12L\n\x04view\x18\x02 \x01(\x0e\x32\x39.google.cloud.dataplex.v1.GetDataScanRequest.DataScanViewB\x03\xe0\x41\x01\"C\n\x0c\x44\x61taScanView\x12\x1e\n\x1a\x44\x41TA_SCAN_VIEW_UNSPECIFIED\x10\x00\x12\t\n\x05\x42\x41SIC\x10\x01\x12\x08\n\x04\x46ULL\x10\n\"\xae\x01\n\x14ListDataScansRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x05 \x01(\tB\x03\xe0\x41\x01\"}\n\x15ListDataScansResponse\x12\x36\n\ndata_scans\x18\x01 \x03(\x0b\x32\".google.cloud.dataplex.v1.DataScan\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"L\n\x12RunDataScanRequest\x12\x36\n\x04name\x18\x01 \x01(\tB(\xe0\x41\x02\xfa\x41\"\n dataplex.googleapis.com/DataScan\"I\n\x13RunDataScanResponse\x12\x32\n\x03job\x18\x01 \x01(\x0b\x32%.google.cloud.dataplex.v1.DataScanJob\"\xf2\x01\n\x15GetDataScanJobRequest\x12\x39\n\x04name\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\n#dataplex.googleapis.com/DataScanJob\x12R\n\x04view\x18\x02 \x01(\x0e\x32?.google.cloud.dataplex.v1.GetDataScanJobRequest.DataScanJobViewB\x03\xe0\x41\x01\"J\n\x0f\x44\x61taScanJobView\x12\"\n\x1e\x44\x41TA_SCAN_JOB_VIEW_UNSPECIFIED\x10\x00\x12\t\n\x05\x42\x41SIC\x10\x01\x12\x08\n\x04\x46ULL\x10\n\"\x99\x01\n\x17ListDataScanJobsRequest\x12\x38\n\x06parent\x18\x01 \x01(\tB(\xe0\x41\x02\xfa\x41\"\n dataplex.googleapis.com/DataScan\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\"r\n\x18ListDataScanJobsResponse\x12=\n\x0e\x64\x61ta_scan_jobs\x18\x01 \x03(\x0b\x32%.google.cloud.dataplex.v1.DataScanJob\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"4\n\x1fGenerateDataQualityRulesRequest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\"[\n GenerateDataQualityRulesResponse\x12\x37\n\x04rule\x18\x01 \x03(\x0b\x32).google.cloud.dataplex.v1.DataQualityRule\"\xb1\n\n\x08\x44\x61taScan\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x10\n\x03uid\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x18\n\x0b\x64\x65scription\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x19\n\x0c\x64isplay_name\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x43\n\x06labels\x18\x05 \x03(\x0b\x32..google.cloud.dataplex.v1.DataScan.LabelsEntryB\x03\xe0\x41\x01\x12\x33\n\x05state\x18\x06 \x01(\x0e\x32\x1f.google.cloud.dataplex.v1.StateB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x37\n\x04\x64\x61ta\x18\t \x01(\x0b\x32$.google.cloud.dataplex.v1.DataSourceB\x03\xe0\x41\x02\x12M\n\x0e\x65xecution_spec\x18\n \x01(\x0b\x32\x30.google.cloud.dataplex.v1.DataScan.ExecutionSpecB\x03\xe0\x41\x01\x12Q\n\x10\x65xecution_status\x18\x0b \x01(\x0b\x32\x32.google.cloud.dataplex.v1.DataScan.ExecutionStatusB\x03\xe0\x41\x03\x12\x39\n\x04type\x18\x0c \x01(\x0e\x32&.google.cloud.dataplex.v1.DataScanTypeB\x03\xe0\x41\x03\x12\x46\n\x11\x64\x61ta_quality_spec\x18\x64 \x01(\x0b\x32).google.cloud.dataplex.v1.DataQualitySpecH\x00\x12\x46\n\x11\x64\x61ta_profile_spec\x18\x65 \x01(\x0b\x32).google.cloud.dataplex.v1.DataProfileSpecH\x00\x12P\n\x13\x64\x61ta_quality_result\x18\xc8\x01 \x01(\x0b\x32+.google.cloud.dataplex.v1.DataQualityResultB\x03\xe0\x41\x03H\x01\x12P\n\x13\x64\x61ta_profile_result\x18\xc9\x01 \x01(\x0b\x32+.google.cloud.dataplex.v1.DataProfileResultB\x03\xe0\x41\x03H\x01\x1am\n\rExecutionSpec\x12\x37\n\x07trigger\x18\x01 \x01(\x0b\x32!.google.cloud.dataplex.v1.TriggerB\x03\xe0\x41\x01\x12\x14\n\x05\x66ield\x18\x64 \x01(\tB\x03\xe0\x41\x05H\x00\x42\r\n\x0bincremental\x1a\x85\x01\n\x0f\x45xecutionStatus\x12\x39\n\x15latest_job_start_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x37\n\x13latest_job_end_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:c\xea\x41`\n dataplex.googleapis.com/DataScan\x12<projects/{project}/locations/{location}/dataScans/{dataScan}B\x06\n\x04specB\x08\n\x06result\"\xe2\x06\n\x0b\x44\x61taScanJob\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x10\n\x03uid\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x33\n\nstart_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12?\n\x05state\x18\x05 \x01(\x0e\x32+.google.cloud.dataplex.v1.DataScanJob.StateB\x03\xe0\x41\x03\x12\x14\n\x07message\x18\x06 \x01(\tB\x03\xe0\x41\x03\x12\x39\n\x04type\x18\x07 \x01(\x0e\x32&.google.cloud.dataplex.v1.DataScanTypeB\x03\xe0\x41\x03\x12K\n\x11\x64\x61ta_quality_spec\x18\x64 \x01(\x0b\x32).google.cloud.dataplex.v1.DataQualitySpecB\x03\xe0\x41\x03H\x00\x12K\n\x11\x64\x61ta_profile_spec\x18\x65 \x01(\x0b\x32).google.cloud.dataplex.v1.DataProfileSpecB\x03\xe0\x41\x03H\x00\x12P\n\x13\x64\x61ta_quality_result\x18\xc8\x01 \x01(\x0b\x32+.google.cloud.dataplex.v1.DataQualityResultB\x03\xe0\x41\x03H\x01\x12P\n\x13\x64\x61ta_profile_result\x18\xc9\x01 \x01(\x0b\x32+.google.cloud.dataplex.v1.DataProfileResultB\x03\xe0\x41\x03H\x01\"q\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0b\n\x07RUNNING\x10\x01\x12\r\n\tCANCELING\x10\x02\x12\r\n\tCANCELLED\x10\x03\x12\r\n\tSUCCEEDED\x10\x04\x12\n\n\x06\x46\x41ILED\x10\x05\x12\x0b\n\x07PENDING\x10\x07:q\xea\x41n\n#dataplex.googleapis.com/DataScanJob\x12Gprojects/{project}/locations/{location}/dataScans/{dataScan}/jobs/{job}B\x06\n\x04specB\x08\n\x06result*R\n\x0c\x44\x61taScanType\x12\x1e\n\x1a\x44\x41TA_SCAN_TYPE_UNSPECIFIED\x10\x00\x12\x10\n\x0c\x44\x41TA_QUALITY\x10\x01\x12\x10\n\x0c\x44\x41TA_PROFILE\x10\x02\x32\xb6\x0f\n\x0f\x44\x61taScanService\x12\xe3\x01\n\x0e\x43reateDataScan\x12/.google.cloud.dataplex.v1.CreateDataScanRequest\x1a\x1d.google.longrunning.Operation\"\x80\x01\xca\x41\x1d\n\x08\x44\x61taScan\x12\x11OperationMetadata\xda\x41\x1dparent,data_scan,data_scan_id\x82\xd3\xe4\x93\x02:\"-/v1/{parent=projects/*/locations/*}/dataScans:\tdata_scan\x12\xe5\x01\n\x0eUpdateDataScan\x12/.google.cloud.dataplex.v1.UpdateDataScanRequest\x1a\x1d.google.longrunning.Operation\"\x82\x01\xca\x41\x1d\n\x08\x44\x61taScan\x12\x11OperationMetadata\xda\x41\x15\x64\x61ta_scan,update_mask\x82\xd3\xe4\x93\x02\x44\x32\x37/v1/{data_scan.name=projects/*/locations/*/dataScans/*}:\tdata_scan\x12\xcb\x01\n\x0e\x44\x65leteDataScan\x12/.google.cloud.dataplex.v1.DeleteDataScanRequest\x1a\x1d.google.longrunning.Operation\"i\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02/*-/v1/{name=projects/*/locations/*/dataScans/*}\x12\x9d\x01\n\x0bGetDataScan\x12,.google.cloud.dataplex.v1.GetDataScanRequest\x1a\".google.cloud.dataplex.v1.DataScan\"<\xda\x41\x04name\x82\xd3\xe4\x93\x02/\x12-/v1/{name=projects/*/locations/*/dataScans/*}\x12\xb0\x01\n\rListDataScans\x12..google.cloud.dataplex.v1.ListDataScansRequest\x1a/.google.cloud.dataplex.v1.ListDataScansResponse\">\xda\x41\x06parent\x82\xd3\xe4\x93\x02/\x12-/v1/{parent=projects/*/locations/*}/dataScans\x12\xaf\x01\n\x0bRunDataScan\x12,.google.cloud.dataplex.v1.RunDataScanRequest\x1a-.google.cloud.dataplex.v1.RunDataScanResponse\"C\xda\x41\x04name\x82\xd3\xe4\x93\x02\x36\"1/v1/{name=projects/*/locations/*/dataScans/*}:run:\x01*\x12\xad\x01\n\x0eGetDataScanJob\x12/.google.cloud.dataplex.v1.GetDataScanJobRequest\x1a%.google.cloud.dataplex.v1.DataScanJob\"C\xda\x41\x04name\x82\xd3\xe4\x93\x02\x36\x12\x34/v1/{name=projects/*/locations/*/dataScans/*/jobs/*}\x12\xc0\x01\n\x10ListDataScanJobs\x12\x31.google.cloud.dataplex.v1.ListDataScanJobsRequest\x1a\x32.google.cloud.dataplex.v1.ListDataScanJobsResponse\"E\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x36\x12\x34/v1/{parent=projects/*/locations/*/dataScans/*}/jobs\x12\xc1\x02\n\x18GenerateDataQualityRules\x12\x39.google.cloud.dataplex.v1.GenerateDataQualityRulesRequest\x1a:.google.cloud.dataplex.v1.GenerateDataQualityRulesResponse\"\xad\x01\xda\x41\x04name\x82\xd3\xe4\x93\x02\x9f\x01\"F/v1/{name=projects/*/locations/*/dataScans/*}:generateDataQualityRules:\x01*ZR\"M/v1/{name=projects/*/locations/*/dataScans/*/jobs/*}:generateDataQualityRules:\x01*\x1aK\xca\x41\x17\x64\x61taplex.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformBj\n\x1c\x63om.google.cloud.dataplex.v1B\x0e\x44\x61taScansProtoP\x01Z8cloud.google.com/go/dataplex/apiv1/dataplexpb;dataplexpbb\x06proto3"
|
23
23
|
|
24
24
|
pool = Google::Protobuf::DescriptorPool.generated_pool
|
25
25
|
|
@@ -35,9 +35,9 @@ rescue TypeError
|
|
35
35
|
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
36
36
|
imports = [
|
37
37
|
["google.protobuf.FieldMask", "google/protobuf/field_mask.proto"],
|
38
|
+
["google.cloud.dataplex.v1.DataQualityRule", "google/cloud/dataplex/v1/data_quality.proto"],
|
38
39
|
["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
|
39
40
|
["google.cloud.dataplex.v1.DataSource", "google/cloud/dataplex/v1/processing.proto"],
|
40
|
-
["google.cloud.dataplex.v1.DataQualitySpec", "google/cloud/dataplex/v1/data_quality.proto"],
|
41
41
|
["google.cloud.dataplex.v1.DataProfileSpec", "google/cloud/dataplex/v1/data_profile.proto"],
|
42
42
|
]
|
43
43
|
imports.each do |type_name, expected_filename|
|
@@ -67,6 +67,8 @@ module Google
|
|
67
67
|
GetDataScanJobRequest::DataScanJobView = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataplex.v1.GetDataScanJobRequest.DataScanJobView").enummodule
|
68
68
|
ListDataScanJobsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataplex.v1.ListDataScanJobsRequest").msgclass
|
69
69
|
ListDataScanJobsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataplex.v1.ListDataScanJobsResponse").msgclass
|
70
|
+
GenerateDataQualityRulesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataplex.v1.GenerateDataQualityRulesRequest").msgclass
|
71
|
+
GenerateDataQualityRulesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataplex.v1.GenerateDataQualityRulesResponse").msgclass
|
70
72
|
DataScan = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataplex.v1.DataScan").msgclass
|
71
73
|
DataScan::ExecutionSpec = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataplex.v1.DataScan.ExecutionSpec").msgclass
|
72
74
|
DataScan::ExecutionStatus = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataplex.v1.DataScan.ExecutionStatus").msgclass
|