google-apis-dataplex_v1 0.70.0 → 0.72.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eea6e567cc3ea8be01e5bfe698578a284eda9c87ab519b4a902e231059269098
4
- data.tar.gz: 54756c25ccb87b57927179ab9ffa3320e1440a697402c060b7818d3547075640
3
+ metadata.gz: 3d684421d4cc0441e1d71142fd0daa7e127a1e162a34303cc0a5023dd50dc385
4
+ data.tar.gz: a38bfd34631560799dbf9665ae17d24fd7124f7b9f02b1c7535c1f39876ba37c
5
5
  SHA512:
6
- metadata.gz: ed18bcefe321fb69396ff32d29f4ee753e22f7a12ba7f87dbd6e2e758185dac36184e8dc1566c511f76baf48598c81a3abbd360d4d5d2f4c72edacc751f15b5f
7
- data.tar.gz: fbdb77ff63859ebe5a5cad1bb051386ef9df2918873956bf880da4ca48629eebdf621ce92a6470a4b0963e0e6d2eec8788702a5f4360b21f9ab83bf22f88d1c3
6
+ metadata.gz: bec3ff1d723a0dcc0a613e2c9bd294314aa7533ec5a8fc2e9aa60bf58a7a2a663a31a274af0492c2fe9bd58bb900800862834d9737f0b8fe15f9e6312bcf2a5f
7
+ data.tar.gz: cad14641077238e0aef6f9009726ac7429492632067cee882d86e926a9acb934d1fa2d5d19f04d26aad5d23b9c69d1a8e54db9eefe53ef853d10876b0fef0b60
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dataplex_v1
2
2
 
3
+ ### v0.72.0 (2025-03-30)
4
+
5
+ * Regenerated from discovery document revision 20250325
6
+
7
+ ### v0.71.0 (2025-03-23)
8
+
9
+ * Regenerated from discovery document revision 20250313
10
+
3
11
  ### v0.70.0 (2025-03-16)
4
12
 
5
13
  * Regenerated from discovery document revision 20250307
@@ -856,7 +856,7 @@ module Google
856
856
 
857
857
  # Optional. Cron schedule (https://en.wikipedia.org/wiki/Cron) for running
858
858
  # discovery periodically. Successive discovery runs must be scheduled at least
859
- # 60 minutes apart. The default value is to run discovery every 60 minutes. To
859
+ # 60 minutes apart. The default value is to run discovery every 60 minutes.To
860
860
  # explicitly set a timezone to the cron tab, apply a prefix in the cron tab: "
861
861
  # CRON_TZ=$`IANA_TIME_ZONE`" or TZ=$`IANA_TIME_ZONE`". The $`IANA_TIME_ZONE` may
862
862
  # only be a valid string from IANA time zone database. For example, CRON_TZ=
@@ -1601,6 +1601,11 @@ module Google
1601
1601
  # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing]
1602
1602
  attr_accessor :bigquery_publishing
1603
1603
 
1604
+ # Statistics of the DataDiscoveryScan.
1605
+ # Corresponds to the JSON property `scanStatistics`
1606
+ # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoveryResultScanStatistics]
1607
+ attr_accessor :scan_statistics
1608
+
1604
1609
  def initialize(**args)
1605
1610
  update!(**args)
1606
1611
  end
@@ -1608,6 +1613,7 @@ module Google
1608
1613
  # Update properties of this object
1609
1614
  def update!(**args)
1610
1615
  @bigquery_publishing = args[:bigquery_publishing] if args.key?(:bigquery_publishing)
1616
+ @scan_statistics = args[:scan_statistics] if args.key?(:scan_statistics)
1611
1617
  end
1612
1618
  end
1613
1619
 
@@ -1620,6 +1626,11 @@ module Google
1620
1626
  # @return [String]
1621
1627
  attr_accessor :dataset
1622
1628
 
1629
+ # Output only. The location of the BigQuery publishing dataset.
1630
+ # Corresponds to the JSON property `location`
1631
+ # @return [String]
1632
+ attr_accessor :location
1633
+
1623
1634
  def initialize(**args)
1624
1635
  update!(**args)
1625
1636
  end
@@ -1627,6 +1638,74 @@ module Google
1627
1638
  # Update properties of this object
1628
1639
  def update!(**args)
1629
1640
  @dataset = args[:dataset] if args.key?(:dataset)
1641
+ @location = args[:location] if args.key?(:location)
1642
+ end
1643
+ end
1644
+
1645
+ # Statistics of the DataDiscoveryScan.
1646
+ class GoogleCloudDataplexV1DataDiscoveryResultScanStatistics
1647
+ include Google::Apis::Core::Hashable
1648
+
1649
+ # The data processed in bytes.
1650
+ # Corresponds to the JSON property `dataProcessedBytes`
1651
+ # @return [Fixnum]
1652
+ attr_accessor :data_processed_bytes
1653
+
1654
+ # The number of files excluded.
1655
+ # Corresponds to the JSON property `filesExcluded`
1656
+ # @return [Fixnum]
1657
+ attr_accessor :files_excluded
1658
+
1659
+ # The number of filesets created.
1660
+ # Corresponds to the JSON property `filesetsCreated`
1661
+ # @return [Fixnum]
1662
+ attr_accessor :filesets_created
1663
+
1664
+ # The number of filesets deleted.
1665
+ # Corresponds to the JSON property `filesetsDeleted`
1666
+ # @return [Fixnum]
1667
+ attr_accessor :filesets_deleted
1668
+
1669
+ # The number of filesets updated.
1670
+ # Corresponds to the JSON property `filesetsUpdated`
1671
+ # @return [Fixnum]
1672
+ attr_accessor :filesets_updated
1673
+
1674
+ # The number of files scanned.
1675
+ # Corresponds to the JSON property `scannedFileCount`
1676
+ # @return [Fixnum]
1677
+ attr_accessor :scanned_file_count
1678
+
1679
+ # The number of tables created.
1680
+ # Corresponds to the JSON property `tablesCreated`
1681
+ # @return [Fixnum]
1682
+ attr_accessor :tables_created
1683
+
1684
+ # The number of tables deleted.
1685
+ # Corresponds to the JSON property `tablesDeleted`
1686
+ # @return [Fixnum]
1687
+ attr_accessor :tables_deleted
1688
+
1689
+ # The number of tables updated.
1690
+ # Corresponds to the JSON property `tablesUpdated`
1691
+ # @return [Fixnum]
1692
+ attr_accessor :tables_updated
1693
+
1694
+ def initialize(**args)
1695
+ update!(**args)
1696
+ end
1697
+
1698
+ # Update properties of this object
1699
+ def update!(**args)
1700
+ @data_processed_bytes = args[:data_processed_bytes] if args.key?(:data_processed_bytes)
1701
+ @files_excluded = args[:files_excluded] if args.key?(:files_excluded)
1702
+ @filesets_created = args[:filesets_created] if args.key?(:filesets_created)
1703
+ @filesets_deleted = args[:filesets_deleted] if args.key?(:filesets_deleted)
1704
+ @filesets_updated = args[:filesets_updated] if args.key?(:filesets_updated)
1705
+ @scanned_file_count = args[:scanned_file_count] if args.key?(:scanned_file_count)
1706
+ @tables_created = args[:tables_created] if args.key?(:tables_created)
1707
+ @tables_deleted = args[:tables_deleted] if args.key?(:tables_deleted)
1708
+ @tables_updated = args[:tables_updated] if args.key?(:tables_updated)
1630
1709
  end
1631
1710
  end
1632
1711
 
@@ -2338,8 +2417,8 @@ module Google
2338
2417
  class GoogleCloudDataplexV1DataQualityDimension
2339
2418
  include Google::Apis::Core::Hashable
2340
2419
 
2341
- # The dimension name a rule belongs to. Supported dimensions are "COMPLETENESS",
2342
- # "ACCURACY", "CONSISTENCY", "VALIDITY", "UNIQUENESS", "FRESHNESS", "VOLUME"
2420
+ # Optional. The dimension name a rule belongs to. Custom dimension name is
2421
+ # supported with all uppercase letters and maximum length of 30 characters.
2343
2422
  # Corresponds to the JSON property `name`
2344
2423
  # @return [String]
2345
2424
  attr_accessor :name
@@ -2365,7 +2444,7 @@ module Google
2365
2444
  # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityDimension]
2366
2445
  attr_accessor :dimension
2367
2446
 
2368
- # Whether the dimension passed or failed.
2447
+ # Output only. Whether the dimension passed or failed.
2369
2448
  # Corresponds to the JSON property `passed`
2370
2449
  # @return [Boolean]
2371
2450
  attr_accessor :passed
@@ -2401,14 +2480,14 @@ module Google
2401
2480
  # @return [Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityColumnResult>]
2402
2481
  attr_accessor :columns
2403
2482
 
2404
- # A list of results at the dimension level.A dimension will have a corresponding
2405
- # DataQualityDimensionResult if and only if there is at least one rule with the '
2406
- # dimension' field set to it.
2483
+ # Output only. A list of results at the dimension level.A dimension will have a
2484
+ # corresponding DataQualityDimensionResult if and only if there is at least one
2485
+ # rule with the 'dimension' field set to it.
2407
2486
  # Corresponds to the JSON property `dimensions`
2408
2487
  # @return [Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityDimensionResult>]
2409
2488
  attr_accessor :dimensions
2410
2489
 
2411
- # Overall data quality result -- true if all rules passed.
2490
+ # Output only. Overall data quality result -- true if all rules passed.
2412
2491
  # Corresponds to the JSON property `passed`
2413
2492
  # @return [Boolean]
2414
2493
  attr_accessor :passed
@@ -2419,12 +2498,12 @@ module Google
2419
2498
  # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityResultPostScanActionsResult]
2420
2499
  attr_accessor :post_scan_actions_result
2421
2500
 
2422
- # The count of rows processed.
2501
+ # Output only. The count of rows processed.
2423
2502
  # Corresponds to the JSON property `rowCount`
2424
2503
  # @return [Fixnum]
2425
2504
  attr_accessor :row_count
2426
2505
 
2427
- # A list of all the rules in a job, and their results.
2506
+ # Output only. A list of all the rules in a job, and their results.
2428
2507
  # Corresponds to the JSON property `rules`
2429
2508
  # @return [Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityRuleResult>]
2430
2509
  attr_accessor :rules
@@ -2724,39 +2803,41 @@ module Google
2724
2803
  # @return [Fixnum]
2725
2804
  attr_accessor :assertion_row_count
2726
2805
 
2727
- # The number of rows a rule was evaluated against.This field is only valid for
2728
- # row-level type rules.Evaluated count can be configured to either include all
2729
- # rows (default) - with null rows automatically failing rule evaluation, or
2730
- # exclude null rows from the evaluated_count, by setting ignore_nulls = true.
2731
- # This field is not set for rule SqlAssertion.
2806
+ # Output only. The number of rows a rule was evaluated against.This field is
2807
+ # only valid for row-level type rules.Evaluated count can be configured to
2808
+ # either include all rows (default) - with null rows automatically failing rule
2809
+ # evaluation, or exclude null rows from the evaluated_count, by setting
2810
+ # ignore_nulls = true.This field is not set for rule SqlAssertion.
2732
2811
  # Corresponds to the JSON property `evaluatedCount`
2733
2812
  # @return [Fixnum]
2734
2813
  attr_accessor :evaluated_count
2735
2814
 
2736
- # The query to find rows that did not pass this rule.This field is only valid
2737
- # for row-level type rules.
2815
+ # Output only. The query to find rows that did not pass this rule.This field is
2816
+ # only valid for row-level type rules.
2738
2817
  # Corresponds to the JSON property `failingRowsQuery`
2739
2818
  # @return [String]
2740
2819
  attr_accessor :failing_rows_query
2741
2820
 
2742
- # The number of rows with null values in the specified column.
2821
+ # Output only. The number of rows with null values in the specified column.
2743
2822
  # Corresponds to the JSON property `nullCount`
2744
2823
  # @return [Fixnum]
2745
2824
  attr_accessor :null_count
2746
2825
 
2747
- # The ratio of passed_count / evaluated_count.This field is only valid for row-
2748
- # level type rules.
2826
+ # Output only. The ratio of passed_count / evaluated_count.This field is only
2827
+ # valid for row-level type rules.
2749
2828
  # Corresponds to the JSON property `passRatio`
2750
2829
  # @return [Float]
2751
2830
  attr_accessor :pass_ratio
2752
2831
 
2753
- # Whether the rule passed or failed.
2832
+ # Output only. Whether the rule passed or failed.
2754
2833
  # Corresponds to the JSON property `passed`
2755
2834
  # @return [Boolean]
2756
2835
  attr_accessor :passed
2757
2836
  alias_method :passed?, :passed
2758
2837
 
2759
- # This field is not set for rule SqlAssertion.
2838
+ # Output only. The number of rows which passed a rule evaluation.This field is
2839
+ # only valid for row-level type rules.This field is not set for rule
2840
+ # SqlAssertion.
2760
2841
  # Corresponds to the JSON property `passedCount`
2761
2842
  # @return [Fixnum]
2762
2843
  attr_accessor :passed_count
@@ -4492,6 +4573,37 @@ module Google
4492
4573
  end
4493
4574
  end
4494
4575
 
4576
+ # Payload associated with Entry related log events.
4577
+ class GoogleCloudDataplexV1EntryLinkEvent
4578
+ include Google::Apis::Core::Hashable
4579
+
4580
+ # The type of the event.
4581
+ # Corresponds to the JSON property `eventType`
4582
+ # @return [String]
4583
+ attr_accessor :event_type
4584
+
4585
+ # The log message.
4586
+ # Corresponds to the JSON property `message`
4587
+ # @return [String]
4588
+ attr_accessor :message
4589
+
4590
+ # Name of the resource.
4591
+ # Corresponds to the JSON property `resource`
4592
+ # @return [String]
4593
+ attr_accessor :resource
4594
+
4595
+ def initialize(**args)
4596
+ update!(**args)
4597
+ end
4598
+
4599
+ # Update properties of this object
4600
+ def update!(**args)
4601
+ @event_type = args[:event_type] if args.key?(:event_type)
4602
+ @message = args[:message] if args.key?(:message)
4603
+ @resource = args[:resource] if args.key?(:resource)
4604
+ end
4605
+ end
4606
+
4495
4607
  # Information related to the source system of the data resource that is
4496
4608
  # represented by the entry.
4497
4609
  class GoogleCloudDataplexV1EntrySource
@@ -6086,6 +6198,17 @@ module Google
6086
6198
  # @return [String]
6087
6199
  attr_accessor :create_time
6088
6200
 
6201
+ # Export Job Results. The result is based on the snapshot at the time when the
6202
+ # job is created.
6203
+ # Corresponds to the JSON property `exportResult`
6204
+ # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobExportJobResult]
6205
+ attr_accessor :export_result
6206
+
6207
+ # Export job specification.
6208
+ # Corresponds to the JSON property `exportSpec`
6209
+ # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobExportJobSpec]
6210
+ attr_accessor :export_spec
6211
+
6089
6212
  # Results from a metadata import job.
6090
6213
  # Corresponds to the JSON property `importResult`
6091
6214
  # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobImportJobResult]
@@ -6142,6 +6265,8 @@ module Google
6142
6265
  # Update properties of this object
6143
6266
  def update!(**args)
6144
6267
  @create_time = args[:create_time] if args.key?(:create_time)
6268
+ @export_result = args[:export_result] if args.key?(:export_result)
6269
+ @export_spec = args[:export_spec] if args.key?(:export_spec)
6145
6270
  @import_result = args[:import_result] if args.key?(:import_result)
6146
6271
  @import_spec = args[:import_spec] if args.key?(:import_spec)
6147
6272
  @labels = args[:labels] if args.key?(:labels)
@@ -6153,6 +6278,121 @@ module Google
6153
6278
  end
6154
6279
  end
6155
6280
 
6281
+ # Export Job Results. The result is based on the snapshot at the time when the
6282
+ # job is created.
6283
+ class GoogleCloudDataplexV1MetadataJobExportJobResult
6284
+ include Google::Apis::Core::Hashable
6285
+
6286
+ # Output only. The error message if the export job failed.
6287
+ # Corresponds to the JSON property `errorMessage`
6288
+ # @return [String]
6289
+ attr_accessor :error_message
6290
+
6291
+ # Output only. The number of entries that have been exported.
6292
+ # Corresponds to the JSON property `exportedEntries`
6293
+ # @return [Fixnum]
6294
+ attr_accessor :exported_entries
6295
+
6296
+ def initialize(**args)
6297
+ update!(**args)
6298
+ end
6299
+
6300
+ # Update properties of this object
6301
+ def update!(**args)
6302
+ @error_message = args[:error_message] if args.key?(:error_message)
6303
+ @exported_entries = args[:exported_entries] if args.key?(:exported_entries)
6304
+ end
6305
+ end
6306
+
6307
+ # Export job specification.
6308
+ class GoogleCloudDataplexV1MetadataJobExportJobSpec
6309
+ include Google::Apis::Core::Hashable
6310
+
6311
+ # Required. The root path of the exported metadata. Must be in the format: "gs://
6312
+ # " Or specify a customized prefix after the bucket: "gs://///.../". The length
6313
+ # limit of the customized prefix is 128 characters. The bucket must be in the
6314
+ # same VPC-SC perimeter with the job.
6315
+ # Corresponds to the JSON property `outputPath`
6316
+ # @return [String]
6317
+ attr_accessor :output_path
6318
+
6319
+ # Scope of the export job.
6320
+ # Corresponds to the JSON property `scope`
6321
+ # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobExportJobSpecExportJobScope]
6322
+ attr_accessor :scope
6323
+
6324
+ def initialize(**args)
6325
+ update!(**args)
6326
+ end
6327
+
6328
+ # Update properties of this object
6329
+ def update!(**args)
6330
+ @output_path = args[:output_path] if args.key?(:output_path)
6331
+ @scope = args[:scope] if args.key?(:scope)
6332
+ end
6333
+ end
6334
+
6335
+ # Scope of the export job.
6336
+ class GoogleCloudDataplexV1MetadataJobExportJobSpecExportJobScope
6337
+ include Google::Apis::Core::Hashable
6338
+
6339
+ # The aspect types that are in scope for the export job. Optional. If specified,
6340
+ # only aspects of the specified types will be affected by the job. Must follow
6341
+ # the format: "projects//locations//aspectTypes/"
6342
+ # Corresponds to the JSON property `aspectTypes`
6343
+ # @return [Array<String>]
6344
+ attr_accessor :aspect_types
6345
+
6346
+ # The entry groups that are in scope for the export job. Optional. If specified,
6347
+ # only entries in the specified entry groups will be exported by the job. Must
6348
+ # be in the VPC-SC perimeter of the job. The location of the entry groups must
6349
+ # be the same as the job. Either projects or entry_groups can be specified when
6350
+ # organization_level_export is set to false. Must follow the format: "projects//
6351
+ # locations//entryGroups/"
6352
+ # Corresponds to the JSON property `entryGroups`
6353
+ # @return [Array<String>]
6354
+ attr_accessor :entry_groups
6355
+
6356
+ # If specified, only entries of the specified types will be affected by the job.
6357
+ # Must follow the format: "projects//locations//entryTypes/"
6358
+ # Corresponds to the JSON property `entryTypes`
6359
+ # @return [Array<String>]
6360
+ attr_accessor :entry_types
6361
+
6362
+ # Indicating if it is an organization level export job. - When set to true,
6363
+ # exports all entries from entry groups and projects sharing the same
6364
+ # organization id of the Metadata Job. Only projects and entry groups in the VPC-
6365
+ # SC perimeter will be exported. The projects and entry groups are ignored. -
6366
+ # When set to false, one of the projects or entry groups must be specified. -
6367
+ # Default to false.
6368
+ # Corresponds to the JSON property `organizationLevel`
6369
+ # @return [Boolean]
6370
+ attr_accessor :organization_level
6371
+ alias_method :organization_level?, :organization_level
6372
+
6373
+ # The projects that are in the scope of the export job. Can either be project
6374
+ # numbers or project IDs. If specified, only the entries from the specified
6375
+ # projects will be exported. The projects must be in the same organization and
6376
+ # in the VPC-SC perimeter. Either projects or entry_groups can be specified when
6377
+ # organization_level_export is set to false. Must follow the format: "projects/"
6378
+ # Corresponds to the JSON property `projects`
6379
+ # @return [Array<String>]
6380
+ attr_accessor :projects
6381
+
6382
+ def initialize(**args)
6383
+ update!(**args)
6384
+ end
6385
+
6386
+ # Update properties of this object
6387
+ def update!(**args)
6388
+ @aspect_types = args[:aspect_types] if args.key?(:aspect_types)
6389
+ @entry_groups = args[:entry_groups] if args.key?(:entry_groups)
6390
+ @entry_types = args[:entry_types] if args.key?(:entry_types)
6391
+ @organization_level = args[:organization_level] if args.key?(:organization_level)
6392
+ @projects = args[:projects] if args.key?(:projects)
6393
+ end
6394
+ end
6395
+
6156
6396
  # Results from a metadata import job.
6157
6397
  class GoogleCloudDataplexV1MetadataJobImportJobResult
6158
6398
  include Google::Apis::Core::Hashable
@@ -7830,7 +8070,7 @@ module Google
7830
8070
 
7831
8071
  # Optional. Cron schedule (https://en.wikipedia.org/wiki/Cron) for running
7832
8072
  # discovery periodically. Successive discovery runs must be scheduled at least
7833
- # 60 minutes apart. The default value is to run discovery every 60 minutes. To
8073
+ # 60 minutes apart. The default value is to run discovery every 60 minutes.To
7834
8074
  # explicitly set a timezone to the cron tab, apply a prefix in the cron tab: "
7835
8075
  # CRON_TZ=$`IANA_TIME_ZONE`" or TZ=$`IANA_TIME_ZONE`". The $`IANA_TIME_ZONE` may
7836
8076
  # only be a valid string from IANA time zone database. For example, CRON_TZ=
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DataplexV1
18
18
  # Version of the google-apis-dataplex_v1 gem
19
- GEM_VERSION = "0.70.0"
19
+ GEM_VERSION = "0.72.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250307"
25
+ REVISION = "20250325"
26
26
  end
27
27
  end
28
28
  end
@@ -262,6 +262,12 @@ module Google
262
262
  include Google::Apis::Core::JsonObjectSupport
263
263
  end
264
264
 
265
+ class GoogleCloudDataplexV1DataDiscoveryResultScanStatistics
266
+ class Representation < Google::Apis::Core::JsonRepresentation; end
267
+
268
+ include Google::Apis::Core::JsonObjectSupport
269
+ end
270
+
265
271
  class GoogleCloudDataplexV1DataDiscoverySpec
266
272
  class Representation < Google::Apis::Core::JsonRepresentation; end
267
273
 
@@ -676,6 +682,12 @@ module Google
676
682
  include Google::Apis::Core::JsonObjectSupport
677
683
  end
678
684
 
685
+ class GoogleCloudDataplexV1EntryLinkEvent
686
+ class Representation < Google::Apis::Core::JsonRepresentation; end
687
+
688
+ include Google::Apis::Core::JsonObjectSupport
689
+ end
690
+
679
691
  class GoogleCloudDataplexV1EntrySource
680
692
  class Representation < Google::Apis::Core::JsonRepresentation; end
681
693
 
@@ -940,6 +952,24 @@ module Google
940
952
  include Google::Apis::Core::JsonObjectSupport
941
953
  end
942
954
 
955
+ class GoogleCloudDataplexV1MetadataJobExportJobResult
956
+ class Representation < Google::Apis::Core::JsonRepresentation; end
957
+
958
+ include Google::Apis::Core::JsonObjectSupport
959
+ end
960
+
961
+ class GoogleCloudDataplexV1MetadataJobExportJobSpec
962
+ class Representation < Google::Apis::Core::JsonRepresentation; end
963
+
964
+ include Google::Apis::Core::JsonObjectSupport
965
+ end
966
+
967
+ class GoogleCloudDataplexV1MetadataJobExportJobSpecExportJobScope
968
+ class Representation < Google::Apis::Core::JsonRepresentation; end
969
+
970
+ include Google::Apis::Core::JsonObjectSupport
971
+ end
972
+
943
973
  class GoogleCloudDataplexV1MetadataJobImportJobResult
944
974
  class Representation < Google::Apis::Core::JsonRepresentation; end
945
975
 
@@ -1714,6 +1744,8 @@ module Google
1714
1744
  class Representation < Google::Apis::Core::JsonRepresentation
1715
1745
  property :bigquery_publishing, as: 'bigqueryPublishing', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing::Representation
1716
1746
 
1747
+ property :scan_statistics, as: 'scanStatistics', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoveryResultScanStatistics, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoveryResultScanStatistics::Representation
1748
+
1717
1749
  end
1718
1750
  end
1719
1751
 
@@ -1721,6 +1753,22 @@ module Google
1721
1753
  # @private
1722
1754
  class Representation < Google::Apis::Core::JsonRepresentation
1723
1755
  property :dataset, as: 'dataset'
1756
+ property :location, as: 'location'
1757
+ end
1758
+ end
1759
+
1760
+ class GoogleCloudDataplexV1DataDiscoveryResultScanStatistics
1761
+ # @private
1762
+ class Representation < Google::Apis::Core::JsonRepresentation
1763
+ property :data_processed_bytes, :numeric_string => true, as: 'dataProcessedBytes'
1764
+ property :files_excluded, as: 'filesExcluded'
1765
+ property :filesets_created, as: 'filesetsCreated'
1766
+ property :filesets_deleted, as: 'filesetsDeleted'
1767
+ property :filesets_updated, as: 'filesetsUpdated'
1768
+ property :scanned_file_count, as: 'scannedFileCount'
1769
+ property :tables_created, as: 'tablesCreated'
1770
+ property :tables_deleted, as: 'tablesDeleted'
1771
+ property :tables_updated, as: 'tablesUpdated'
1724
1772
  end
1725
1773
  end
1726
1774
 
@@ -2497,6 +2545,15 @@ module Google
2497
2545
  end
2498
2546
  end
2499
2547
 
2548
+ class GoogleCloudDataplexV1EntryLinkEvent
2549
+ # @private
2550
+ class Representation < Google::Apis::Core::JsonRepresentation
2551
+ property :event_type, as: 'eventType'
2552
+ property :message, as: 'message'
2553
+ property :resource, as: 'resource'
2554
+ end
2555
+ end
2556
+
2500
2557
  class GoogleCloudDataplexV1EntrySource
2501
2558
  # @private
2502
2559
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2949,6 +3006,10 @@ module Google
2949
3006
  # @private
2950
3007
  class Representation < Google::Apis::Core::JsonRepresentation
2951
3008
  property :create_time, as: 'createTime'
3009
+ property :export_result, as: 'exportResult', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobExportJobResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobExportJobResult::Representation
3010
+
3011
+ property :export_spec, as: 'exportSpec', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobExportJobSpec, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobExportJobSpec::Representation
3012
+
2952
3013
  property :import_result, as: 'importResult', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobImportJobResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobImportJobResult::Representation
2953
3014
 
2954
3015
  property :import_spec, as: 'importSpec', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobImportJobSpec, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobImportJobSpec::Representation
@@ -2963,6 +3024,34 @@ module Google
2963
3024
  end
2964
3025
  end
2965
3026
 
3027
+ class GoogleCloudDataplexV1MetadataJobExportJobResult
3028
+ # @private
3029
+ class Representation < Google::Apis::Core::JsonRepresentation
3030
+ property :error_message, as: 'errorMessage'
3031
+ property :exported_entries, :numeric_string => true, as: 'exportedEntries'
3032
+ end
3033
+ end
3034
+
3035
+ class GoogleCloudDataplexV1MetadataJobExportJobSpec
3036
+ # @private
3037
+ class Representation < Google::Apis::Core::JsonRepresentation
3038
+ property :output_path, as: 'outputPath'
3039
+ property :scope, as: 'scope', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobExportJobSpecExportJobScope, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobExportJobSpecExportJobScope::Representation
3040
+
3041
+ end
3042
+ end
3043
+
3044
+ class GoogleCloudDataplexV1MetadataJobExportJobSpecExportJobScope
3045
+ # @private
3046
+ class Representation < Google::Apis::Core::JsonRepresentation
3047
+ collection :aspect_types, as: 'aspectTypes'
3048
+ collection :entry_groups, as: 'entryGroups'
3049
+ collection :entry_types, as: 'entryTypes'
3050
+ property :organization_level, as: 'organizationLevel'
3051
+ collection :projects, as: 'projects'
3052
+ end
3053
+ end
3054
+
2966
3055
  class GoogleCloudDataplexV1MetadataJobImportJobResult
2967
3056
  # @private
2968
3057
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -349,6 +349,9 @@ module Google
349
349
  # Lists information about the supported locations for this service.
350
350
  # @param [String] name
351
351
  # The resource that owns the locations collection, if applicable.
352
+ # @param [Array<String>, String] extra_location_types
353
+ # Optional. A list of extra location types that should be used as conditions for
354
+ # controlling the visibility of the locations.
352
355
  # @param [String] filter
353
356
  # A filter to narrow down results to a preferred subset. The filtering language
354
357
  # accepts strings like "displayName=tokyo", and is documented in more detail in
@@ -376,11 +379,12 @@ module Google
376
379
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
377
380
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
378
381
  # @raise [Google::Apis::AuthorizationError] Authorization is required
379
- def list_project_locations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
382
+ def list_project_locations(name, extra_location_types: nil, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
380
383
  command = make_simple_command(:get, 'v1/{+name}/locations', options)
381
384
  command.response_representation = Google::Apis::DataplexV1::GoogleCloudLocationListLocationsResponse::Representation
382
385
  command.response_class = Google::Apis::DataplexV1::GoogleCloudLocationListLocationsResponse
383
386
  command.params['name'] = name unless name.nil?
387
+ command.query['extraLocationTypes'] = extra_location_types unless extra_location_types.nil?
384
388
  command.query['filter'] = filter unless filter.nil?
385
389
  command.query['pageSize'] = page_size unless page_size.nil?
386
390
  command.query['pageToken'] = page_token unless page_token.nil?
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dataplex_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.70.0
4
+ version: 0.72.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-16 00:00:00.000000000 Z
10
+ date: 2025-03-30 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataplex_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.70.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.72.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataplex_v1
62
62
  rdoc_options: []
63
63
  require_paths: