google-apis-dataplex_v1 0.74.0 → 0.76.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: 7c5223341388a9c56e76107bfb80e599745d4845e78adcbe7529a59e55c2602a
4
- data.tar.gz: e91b53fadcf8835caa4cc0442e78d3e050994e2597de47f74959a43578c41030
3
+ metadata.gz: 2227be65ad8b7bfa163f58eb8d29b860a894c78dece5d339afd369c4c750f8ec
4
+ data.tar.gz: 0cc20c2375a219d53ebfcce22caba16d21791dd12674849b2d9997a9e2f0efee
5
5
  SHA512:
6
- metadata.gz: 1a6bbd44dc380a0cf225da6fbfe6c624c1c83c32bc16a3acb4b32b5e2639a91e02ce5203914fb796beb0ba55b63c6115d4765f6a1a21f075f7c9997b4c508043
7
- data.tar.gz: 98d47112af4091d421308891641fb4232a5a1b7a97caa3ef24e19301904ec46d49155b1f9bbbdaa762682397f3d28b5fb3e21c658464352523632749a8912b46
6
+ metadata.gz: b7a93eeca6578a058f95ded767ec258e19b1933c0676af5635d4b3bda7b493042b616febc66e5762782c438d6813dde1ebf9362cc5fd2141f21a5cdb48665f74
7
+ data.tar.gz: 5ec2e117037d26c2d1adf6e15a1b0c3cde8d470eaa61ac94df28d5f2e36119388716b60db4391299e7cf246037d65340789539408572491f53fb56245eda93a9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-dataplex_v1
2
2
 
3
+ ### v0.76.0 (2025-05-25)
4
+
5
+ * Regenerated from discovery document revision 20250520
6
+ * Regenerated using generator version 0.18.0
7
+
8
+ ### v0.75.0 (2025-05-21)
9
+
10
+ * Regenerated from discovery document revision 20250513
11
+
3
12
  ### v0.74.0 (2025-05-04)
4
13
 
5
14
  * Regenerated from discovery document revision 20250429
@@ -1765,6 +1765,13 @@ module Google
1765
1765
  # @return [String]
1766
1766
  attr_accessor :location
1767
1767
 
1768
+ # Optional. The project of the BigQuery dataset to publish BigLake external or
1769
+ # non-BigLake external tables to. If not specified, the project of the Cloud
1770
+ # Storage bucket will be used. The format is "projects/`project_id_or_number`".
1771
+ # Corresponds to the JSON property `project`
1772
+ # @return [String]
1773
+ attr_accessor :project
1774
+
1768
1775
  # Optional. Determines whether to publish discovered tables as BigLake external
1769
1776
  # tables or non-BigLake external tables.
1770
1777
  # Corresponds to the JSON property `tableType`
@@ -1779,6 +1786,7 @@ module Google
1779
1786
  def update!(**args)
1780
1787
  @connection = args[:connection] if args.key?(:connection)
1781
1788
  @location = args[:location] if args.key?(:location)
1789
+ @project = args[:project] if args.key?(:project)
1782
1790
  @table_type = args[:table_type] if args.key?(:table_type)
1783
1791
  end
1784
1792
  end
@@ -2394,6 +2402,17 @@ module Google
2394
2402
  # @return [String]
2395
2403
  attr_accessor :column
2396
2404
 
2405
+ # Output only. The dimension-level results for this column.
2406
+ # Corresponds to the JSON property `dimensions`
2407
+ # @return [Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityDimensionResult>]
2408
+ attr_accessor :dimensions
2409
+
2410
+ # Output only. Whether the column passed or failed.
2411
+ # Corresponds to the JSON property `passed`
2412
+ # @return [Boolean]
2413
+ attr_accessor :passed
2414
+ alias_method :passed?, :passed
2415
+
2397
2416
  # Output only. The column-level data quality score for this data scan job if and
2398
2417
  # only if the 'column' field is set.The score ranges between between 0, 100 (up
2399
2418
  # to two decimal points).
@@ -2408,6 +2427,8 @@ module Google
2408
2427
  # Update properties of this object
2409
2428
  def update!(**args)
2410
2429
  @column = args[:column] if args.key?(:column)
2430
+ @dimensions = args[:dimensions] if args.key?(:dimensions)
2431
+ @passed = args[:passed] if args.key?(:passed)
2411
2432
  @score = args[:score] if args.key?(:score)
2412
2433
  end
2413
2434
  end
@@ -2473,6 +2494,11 @@ module Google
2473
2494
  class GoogleCloudDataplexV1DataQualityResult
2474
2495
  include Google::Apis::Core::Hashable
2475
2496
 
2497
+ # The status of publishing the data scan result to Catalog.
2498
+ # Corresponds to the JSON property `catalogPublishingStatus`
2499
+ # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanCatalogPublishingStatus]
2500
+ attr_accessor :catalog_publishing_status
2501
+
2476
2502
  # Output only. A list of results at the column level.A column will have a
2477
2503
  # corresponding DataQualityColumnResult if and only if there is at least one
2478
2504
  # rule with the 'column' field set to it.
@@ -2525,6 +2551,7 @@ module Google
2525
2551
 
2526
2552
  # Update properties of this object
2527
2553
  def update!(**args)
2554
+ @catalog_publishing_status = args[:catalog_publishing_status] if args.key?(:catalog_publishing_status)
2528
2555
  @columns = args[:columns] if args.key?(:columns)
2529
2556
  @dimensions = args[:dimensions] if args.key?(:dimensions)
2530
2557
  @passed = args[:passed] if args.key?(:passed)
@@ -3119,6 +3146,13 @@ module Google
3119
3146
  class GoogleCloudDataplexV1DataQualitySpec
3120
3147
  include Google::Apis::Core::Hashable
3121
3148
 
3149
+ # Optional. If set, the latest DataScan job result will be published to Dataplex
3150
+ # Catalog.
3151
+ # Corresponds to the JSON property `catalogPublishingEnabled`
3152
+ # @return [Boolean]
3153
+ attr_accessor :catalog_publishing_enabled
3154
+ alias_method :catalog_publishing_enabled?, :catalog_publishing_enabled
3155
+
3122
3156
  # The configuration of post scan actions of DataQualityScan.
3123
3157
  # Corresponds to the JSON property `postScanActions`
3124
3158
  # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActions]
@@ -3152,6 +3186,7 @@ module Google
3152
3186
 
3153
3187
  # Update properties of this object
3154
3188
  def update!(**args)
3189
+ @catalog_publishing_enabled = args[:catalog_publishing_enabled] if args.key?(:catalog_publishing_enabled)
3155
3190
  @post_scan_actions = args[:post_scan_actions] if args.key?(:post_scan_actions)
3156
3191
  @row_filter = args[:row_filter] if args.key?(:row_filter)
3157
3192
  @rules = args[:rules] if args.key?(:rules)
@@ -3451,11 +3486,35 @@ module Google
3451
3486
  end
3452
3487
  end
3453
3488
 
3489
+ # The status of publishing the data scan result to Catalog.
3490
+ class GoogleCloudDataplexV1DataScanCatalogPublishingStatus
3491
+ include Google::Apis::Core::Hashable
3492
+
3493
+ # Output only. Execution state for catalog publishing.
3494
+ # Corresponds to the JSON property `state`
3495
+ # @return [String]
3496
+ attr_accessor :state
3497
+
3498
+ def initialize(**args)
3499
+ update!(**args)
3500
+ end
3501
+
3502
+ # Update properties of this object
3503
+ def update!(**args)
3504
+ @state = args[:state] if args.key?(:state)
3505
+ end
3506
+ end
3507
+
3454
3508
  # These messages contain information about the execution of a datascan. The
3455
3509
  # monitored resource is 'DataScan'
3456
3510
  class GoogleCloudDataplexV1DataScanEvent
3457
3511
  include Google::Apis::Core::Hashable
3458
3512
 
3513
+ # The status of publishing the data scan result to Catalog.
3514
+ # Corresponds to the JSON property `catalogPublishingStatus`
3515
+ # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanCatalogPublishingStatus]
3516
+ attr_accessor :catalog_publishing_status
3517
+
3459
3518
  # The time when the data scan job was created.
3460
3519
  # Corresponds to the JSON property `createTime`
3461
3520
  # @return [String]
@@ -3542,6 +3601,7 @@ module Google
3542
3601
 
3543
3602
  # Update properties of this object
3544
3603
  def update!(**args)
3604
+ @catalog_publishing_status = args[:catalog_publishing_status] if args.key?(:catalog_publishing_status)
3545
3605
  @create_time = args[:create_time] if args.key?(:create_time)
3546
3606
  @data_profile = args[:data_profile] if args.key?(:data_profile)
3547
3607
  @data_profile_configs = args[:data_profile_configs] if args.key?(:data_profile_configs)
@@ -4659,7 +4719,7 @@ module Google
4659
4719
  end
4660
4720
  end
4661
4721
 
4662
- # EntryLink represents a link between two entries.
4722
+ # EntryLink represents a link between two Entries.
4663
4723
  class GoogleCloudDataplexV1EntryLink
4664
4724
  include Google::Apis::Core::Hashable
4665
4725
 
@@ -4669,21 +4729,21 @@ module Google
4669
4729
  attr_accessor :create_time
4670
4730
 
4671
4731
  # Required. Immutable. Relative resource name of the Entry Link Type used to
4672
- # create this Entry Link, of the form: projects/`project`/locations/`location`/
4673
- # entryLinkTypes/`entry_link_type`.
4732
+ # create this Entry Link, of the form: `projects/`project_id_or_number`/
4733
+ # locations/`location_id`/entryLinkTypes/`entry_link_type_id`.
4674
4734
  # Corresponds to the JSON property `entryLinkType`
4675
4735
  # @return [String]
4676
4736
  attr_accessor :entry_link_type
4677
4737
 
4678
- # Required. Specifies the entries referenced in the entry link. There should be
4738
+ # Required. Specifies the Entries referenced in the Entry Link. There should be
4679
4739
  # exactly two entry references.
4680
4740
  # Corresponds to the JSON property `entryReferences`
4681
4741
  # @return [Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1EntryLinkEntryReference>]
4682
4742
  attr_accessor :entry_references
4683
4743
 
4684
4744
  # Output only. Immutable. Identifier. The relative resource name of the Entry
4685
- # Link, of the form: projects/`project`/locations/`location`/entryGroups/`
4686
- # entry_group`/entryLinks/`entry_link`.
4745
+ # Link, of the form: projects/`project_id_or_number`/locations/`location_id`/
4746
+ # entryGroups/`entry_group_id`/entryLinks/`entry_link_id`
4687
4747
  # Corresponds to the JSON property `name`
4688
4748
  # @return [String]
4689
4749
  attr_accessor :name
@@ -4707,24 +4767,24 @@ module Google
4707
4767
  end
4708
4768
  end
4709
4769
 
4710
- # Reference to the Entry that is linked through the entry link.
4770
+ # Reference to the Entry that is linked through the Entry Link.
4711
4771
  class GoogleCloudDataplexV1EntryLinkEntryReference
4712
4772
  include Google::Apis::Core::Hashable
4713
4773
 
4714
- # Required. Immutable. The relative resource name of the referenced entry, of
4715
- # the form: projects/`project`/locations/`location`/entryGroups/`entryGroup`/
4716
- # entries/`entry`.
4774
+ # Required. Immutable. The relative resource name of the referenced Entry, of
4775
+ # the form: projects/`project_id_or_number`/locations/`location_id`/entryGroups/`
4776
+ # entry_group_id`/entries/`entry_id`
4717
4777
  # Corresponds to the JSON property `name`
4718
4778
  # @return [String]
4719
4779
  attr_accessor :name
4720
4780
 
4721
- # Immutable. The path in the entry that is referenced in the entry link. Empty
4722
- # path denotes that the entry itself is referenced in the entry link.
4781
+ # Immutable. The path in the Entry that is referenced in the Entry Link. Empty
4782
+ # path denotes that the Entry itself is referenced in the Entry Link.
4723
4783
  # Corresponds to the JSON property `path`
4724
4784
  # @return [String]
4725
4785
  attr_accessor :path
4726
4786
 
4727
- # Required. Immutable. The reference type of the entry.
4787
+ # Required. Immutable. The reference type of the Entry.
4728
4788
  # Corresponds to the JSON property `type`
4729
4789
  # @return [String]
4730
4790
  attr_accessor :type
@@ -5319,29 +5379,29 @@ module Google
5319
5379
  end
5320
5380
  end
5321
5381
 
5322
- # A Glossary represents a collection of categories and terms defined by the user.
5323
- # Glossary is a top level resource and is the GCP parent resource of all the
5324
- # categories and terms within it.
5382
+ # A Glossary represents a collection of GlossaryCategories and GlossaryTerms
5383
+ # defined by the user. Glossary is a top level resource and is the GCP parent
5384
+ # resource of all the GlossaryCategories and GlossaryTerms within it.
5325
5385
  class GoogleCloudDataplexV1Glossary
5326
5386
  include Google::Apis::Core::Hashable
5327
5387
 
5328
- # Output only. The number of categories in the glossary.
5388
+ # Output only. The number of GlossaryCategories in the Glossary.
5329
5389
  # Corresponds to the JSON property `categoryCount`
5330
5390
  # @return [Fixnum]
5331
5391
  attr_accessor :category_count
5332
5392
 
5333
- # Output only. The time at which the glossary was created.
5393
+ # Output only. The time at which the Glossary was created.
5334
5394
  # Corresponds to the JSON property `createTime`
5335
5395
  # @return [String]
5336
5396
  attr_accessor :create_time
5337
5397
 
5338
- # Optional. The user-mutable description of the glossary.
5398
+ # Optional. The user-mutable description of the Glossary.
5339
5399
  # Corresponds to the JSON property `description`
5340
5400
  # @return [String]
5341
5401
  attr_accessor :description
5342
5402
 
5343
- # Optional. User friendly display name of the glossary. This is user-mutable.
5344
- # This will be same as the glossaryId, if not specified.
5403
+ # Optional. User friendly display name of the Glossary. This is user-mutable.
5404
+ # This will be same as the GlossaryId, if not specified.
5345
5405
  # Corresponds to the JSON property `displayName`
5346
5406
  # @return [String]
5347
5407
  attr_accessor :display_name
@@ -5360,12 +5420,12 @@ module Google
5360
5420
  attr_accessor :labels
5361
5421
 
5362
5422
  # Output only. Identifier. The resource name of the Glossary. Format: projects/`
5363
- # projectId`/locations/`locationId`/glossaries/`glossaryId`
5423
+ # project_id_or_number`/locations/`location_id`/glossaries/`glossary_id`
5364
5424
  # Corresponds to the JSON property `name`
5365
5425
  # @return [String]
5366
5426
  attr_accessor :name
5367
5427
 
5368
- # Output only. The number of terms in the glossary.
5428
+ # Output only. The number of GlossaryTerms in the Glossary.
5369
5429
  # Corresponds to the JSON property `termCount`
5370
5430
  # @return [Fixnum]
5371
5431
  attr_accessor :term_count
@@ -5376,7 +5436,7 @@ module Google
5376
5436
  # @return [String]
5377
5437
  attr_accessor :uid
5378
5438
 
5379
- # Output only. The time at which the glossary was last updated.
5439
+ # Output only. The time at which the Glossary was last updated.
5380
5440
  # Corresponds to the JSON property `updateTime`
5381
5441
  # @return [String]
5382
5442
  attr_accessor :update_time
@@ -5400,8 +5460,8 @@ module Google
5400
5460
  end
5401
5461
  end
5402
5462
 
5403
- # A GlossaryCategory represents a collection of categories and terms within a
5404
- # Glossary that are related to each other.
5463
+ # A GlossaryCategory represents a collection of GlossaryCategories and
5464
+ # GlossaryTerms within a Glossary that are related to each other.
5405
5465
  class GoogleCloudDataplexV1GlossaryCategory
5406
5466
  include Google::Apis::Core::Hashable
5407
5467
 
@@ -5416,7 +5476,7 @@ module Google
5416
5476
  attr_accessor :description
5417
5477
 
5418
5478
  # Optional. User friendly display name of the GlossaryCategory. This is user-
5419
- # mutable. This will be same as the categoryId, if not specified.
5479
+ # mutable. This will be same as the GlossaryCategoryId, if not specified.
5420
5480
  # Corresponds to the JSON property `displayName`
5421
5481
  # @return [String]
5422
5482
  attr_accessor :display_name
@@ -5427,17 +5487,17 @@ module Google
5427
5487
  attr_accessor :labels
5428
5488
 
5429
5489
  # Output only. Identifier. The resource name of the GlossaryCategory. Format:
5430
- # projects/`projectId`/locations/`locationId`/glossaries/`glossaryId`/categories/
5431
- # `categoryId`
5490
+ # projects/`project_id_or_number`/locations/`location_id`/glossaries/`
5491
+ # glossary_id`/categories/`category_id`
5432
5492
  # Corresponds to the JSON property `name`
5433
5493
  # @return [String]
5434
5494
  attr_accessor :name
5435
5495
 
5436
5496
  # Required. The immediate parent of the GlossaryCategory in the resource-
5437
- # hierarchy. It can either be a Glossary or a Category. Format: projects/`
5438
- # projectId`/locations/`locationId`/glossaries/`glossaryId` OR projects/`
5439
- # projectId`/locations/`locationId`/glossaries/`glossaryId`/categories/`
5440
- # categoryId`
5497
+ # hierarchy. It can either be a Glossary or a GlossaryCategory. Format: projects/
5498
+ # `project_id_or_number`/locations/`location_id`/glossaries/`glossary_id` OR
5499
+ # projects/`project_id_or_number`/locations/`location_id`/glossaries/`
5500
+ # glossary_id`/categories/`category_id`
5441
5501
  # Corresponds to the JSON property `parent`
5442
5502
  # @return [String]
5443
5503
  attr_accessor :parent
@@ -5471,8 +5531,8 @@ module Google
5471
5531
  end
5472
5532
  end
5473
5533
 
5474
- # GlossaryTerms are the core of glossary. A GlossaryTerm holds a rich text
5475
- # description that can be attached to entries or specific columns to enrich them.
5534
+ # GlossaryTerms are the core of Glossary. A GlossaryTerm holds a rich text
5535
+ # description that can be attached to Entries or specific columns to enrich them.
5476
5536
  class GoogleCloudDataplexV1GlossaryTerm
5477
5537
  include Google::Apis::Core::Hashable
5478
5538
 
@@ -5487,7 +5547,7 @@ module Google
5487
5547
  attr_accessor :description
5488
5548
 
5489
5549
  # Optional. User friendly display name of the GlossaryTerm. This is user-mutable.
5490
- # This will be same as the termId, if not specified.
5550
+ # This will be same as the GlossaryTermId, if not specified.
5491
5551
  # Corresponds to the JSON property `displayName`
5492
5552
  # @return [String]
5493
5553
  attr_accessor :display_name
@@ -5498,16 +5558,17 @@ module Google
5498
5558
  attr_accessor :labels
5499
5559
 
5500
5560
  # Output only. Identifier. The resource name of the GlossaryTerm. Format:
5501
- # projects/`projectId`/locations/`locationId`/glossaries/`glossaryId`/terms/`
5502
- # termId`
5561
+ # projects/`project_id_or_number`/locations/`location_id`/glossaries/`
5562
+ # glossary_id`/terms/`term_id`
5503
5563
  # Corresponds to the JSON property `name`
5504
5564
  # @return [String]
5505
5565
  attr_accessor :name
5506
5566
 
5507
5567
  # Required. The immediate parent of the GlossaryTerm in the resource-hierarchy.
5508
- # It can either be a Glossary or a Category. Format: projects/`projectId`/
5509
- # locations/`locationId`/glossaries/`glossaryId` OR projects/`projectId`/
5510
- # locations/`locationId`/glossaries/`glossaryId`/categories/`categoryId`
5568
+ # It can either be a Glossary or a GlossaryCategory. Format: projects/`
5569
+ # project_id_or_number`/locations/`location_id`/glossaries/`glossary_id` OR
5570
+ # projects/`project_id_or_number`/locations/`location_id`/glossaries/`
5571
+ # glossary_id`/categories/`category_id`
5511
5572
  # Corresponds to the JSON property `parent`
5512
5573
  # @return [String]
5513
5574
  attr_accessor :parent
@@ -6414,7 +6475,7 @@ module Google
6414
6475
  class GoogleCloudDataplexV1ListGlossariesResponse
6415
6476
  include Google::Apis::Core::Hashable
6416
6477
 
6417
- # Lists the glossaries in the specified parent.
6478
+ # Lists the Glossaries in the specified parent.
6418
6479
  # Corresponds to the JSON property `glossaries`
6419
6480
  # @return [Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1Glossary>]
6420
6481
  attr_accessor :glossaries
@@ -6446,7 +6507,7 @@ module Google
6446
6507
  class GoogleCloudDataplexV1ListGlossaryCategoriesResponse
6447
6508
  include Google::Apis::Core::Hashable
6448
6509
 
6449
- # Lists the glossaryCategories in the specified parent.
6510
+ # Lists the GlossaryCategories in the specified parent.
6450
6511
  # Corresponds to the JSON property `categories`
6451
6512
  # @return [Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1GlossaryCategory>]
6452
6513
  attr_accessor :categories
@@ -6484,7 +6545,7 @@ module Google
6484
6545
  # @return [String]
6485
6546
  attr_accessor :next_page_token
6486
6547
 
6487
- # Lists the terms in the specified parent.
6548
+ # Lists the GlossaryTerms in the specified parent.
6488
6549
  # Corresponds to the JSON property `terms`
6489
6550
  # @return [Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1GlossaryTerm>]
6490
6551
  attr_accessor :terms
@@ -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.74.0"
19
+ GEM_VERSION = "0.76.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250429"
25
+ REVISION = "20250520"
26
26
  end
27
27
  end
28
28
  end
@@ -544,6 +544,12 @@ module Google
544
544
  include Google::Apis::Core::JsonObjectSupport
545
545
  end
546
546
 
547
+ class GoogleCloudDataplexV1DataScanCatalogPublishingStatus
548
+ class Representation < Google::Apis::Core::JsonRepresentation; end
549
+
550
+ include Google::Apis::Core::JsonObjectSupport
551
+ end
552
+
547
553
  class GoogleCloudDataplexV1DataScanEvent
548
554
  class Representation < Google::Apis::Core::JsonRepresentation; end
549
555
 
@@ -1853,6 +1859,7 @@ module Google
1853
1859
  class Representation < Google::Apis::Core::JsonRepresentation
1854
1860
  property :connection, as: 'connection'
1855
1861
  property :location, as: 'location'
1862
+ property :project, as: 'project'
1856
1863
  property :table_type, as: 'tableType'
1857
1864
  end
1858
1865
  end
@@ -2032,6 +2039,9 @@ module Google
2032
2039
  # @private
2033
2040
  class Representation < Google::Apis::Core::JsonRepresentation
2034
2041
  property :column, as: 'column'
2042
+ collection :dimensions, as: 'dimensions', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityDimensionResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityDimensionResult::Representation
2043
+
2044
+ property :passed, as: 'passed'
2035
2045
  property :score, as: 'score'
2036
2046
  end
2037
2047
  end
@@ -2056,6 +2066,8 @@ module Google
2056
2066
  class GoogleCloudDataplexV1DataQualityResult
2057
2067
  # @private
2058
2068
  class Representation < Google::Apis::Core::JsonRepresentation
2069
+ property :catalog_publishing_status, as: 'catalogPublishingStatus', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanCatalogPublishingStatus, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanCatalogPublishingStatus::Representation
2070
+
2059
2071
  collection :columns, as: 'columns', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityColumnResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityColumnResult::Representation
2060
2072
 
2061
2073
  collection :dimensions, as: 'dimensions', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityDimensionResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityDimensionResult::Representation
@@ -2224,6 +2236,7 @@ module Google
2224
2236
  class GoogleCloudDataplexV1DataQualitySpec
2225
2237
  # @private
2226
2238
  class Representation < Google::Apis::Core::JsonRepresentation
2239
+ property :catalog_publishing_enabled, as: 'catalogPublishingEnabled'
2227
2240
  property :post_scan_actions, as: 'postScanActions', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActions, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActions::Representation
2228
2241
 
2229
2242
  property :row_filter, as: 'rowFilter'
@@ -2323,9 +2336,18 @@ module Google
2323
2336
  end
2324
2337
  end
2325
2338
 
2339
+ class GoogleCloudDataplexV1DataScanCatalogPublishingStatus
2340
+ # @private
2341
+ class Representation < Google::Apis::Core::JsonRepresentation
2342
+ property :state, as: 'state'
2343
+ end
2344
+ end
2345
+
2326
2346
  class GoogleCloudDataplexV1DataScanEvent
2327
2347
  # @private
2328
2348
  class Representation < Google::Apis::Core::JsonRepresentation
2349
+ property :catalog_publishing_status, as: 'catalogPublishingStatus', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanCatalogPublishingStatus, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanCatalogPublishingStatus::Representation
2350
+
2329
2351
  property :create_time, as: 'createTime'
2330
2352
  property :data_profile, as: 'dataProfile', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanEventDataProfileResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanEventDataProfileResult::Representation
2331
2353
 
@@ -638,7 +638,7 @@ module Google
638
638
  # Searches for Entries matching the given query and scope.
639
639
  # @param [String] name
640
640
  # Required. The project to which the request should be attributed in the
641
- # following form: projects/`project`/locations/`location`.
641
+ # following form: projects/`project`/locations/global.
642
642
  # @param [String] order_by
643
643
  # Optional. Specifies the ordering of results. Supported values are: relevance (
644
644
  # default) last_modified_timestamp last_modified_timestamp asc
@@ -3070,8 +3070,8 @@ module Google
3070
3070
 
3071
3071
  # Creates an Entry Link.
3072
3072
  # @param [String] parent
3073
- # Required. The resource name of the parent Entry Group: projects/`project`/
3074
- # locations/`location`/entryGroups/`entry_group`.
3073
+ # Required. The resource name of the parent Entry Group: projects/`
3074
+ # project_id_or_number`/locations/`location_id`/entryGroups/`entry_group_id`.
3075
3075
  # @param [Google::Apis::DataplexV1::GoogleCloudDataplexV1EntryLink] google_cloud_dataplex_v1_entry_link_object
3076
3076
  # @param [String] entry_link_id
3077
3077
  # Required. Entry Link identifier * Must contain only lowercase letters, numbers
@@ -3109,8 +3109,9 @@ module Google
3109
3109
 
3110
3110
  # Deletes an Entry Link.
3111
3111
  # @param [String] name
3112
- # Required. The resource name of the Entry Link: projects/`project`/locations/`
3113
- # location`/entryGroups/`entry_group`/entryLinks/`entry_link`.
3112
+ # Required. The resource name of the Entry Link: projects/`project_id_or_number`/
3113
+ # locations/`location_id`/entryGroups/`entry_group_id`/entryLinks/`entry_link_id`
3114
+ # .
3114
3115
  # @param [String] fields
3115
3116
  # Selector specifying which fields to include in a partial response.
3116
3117
  # @param [String] quota_user
@@ -3138,10 +3139,11 @@ module Google
3138
3139
  execute_or_queue_command(command, &block)
3139
3140
  end
3140
3141
 
3141
- # Gets an entry link.
3142
+ # Gets an Entry Link.
3142
3143
  # @param [String] name
3143
- # Required. The resource name of the Entry Link: projects/`project`/locations/`
3144
- # location`/entryGroups/`entry_group`/entryLinks/`entry_link`.
3144
+ # Required. The resource name of the Entry Link: projects/`project_id_or_number`/
3145
+ # locations/`location_id`/entryGroups/`entry_group_id`/entryLinks/`entry_link_id`
3146
+ # .
3145
3147
  # @param [String] fields
3146
3148
  # Selector specifying which fields to include in a partial response.
3147
3149
  # @param [String] quota_user
@@ -3615,13 +3617,13 @@ module Google
3615
3617
  # Creates a new Glossary resource.
3616
3618
  # @param [String] parent
3617
3619
  # Required. The parent resource where this Glossary will be created. Format:
3618
- # projects/`projectId`/locations/`locationId` where locationId refers to a GCP
3619
- # region.
3620
+ # projects/`project_id_or_number`/locations/`location_id` where location_id
3621
+ # refers to a GCP region.
3620
3622
  # @param [Google::Apis::DataplexV1::GoogleCloudDataplexV1Glossary] google_cloud_dataplex_v1_glossary_object
3621
3623
  # @param [String] glossary_id
3622
3624
  # Required. Glossary ID: Glossary identifier.
3623
3625
  # @param [Boolean] validate_only
3624
- # Optional. Validates the request without actually creating the glossary.
3626
+ # Optional. Validates the request without actually creating the Glossary.
3625
3627
  # Default: false.
3626
3628
  # @param [String] fields
3627
3629
  # Selector specifying which fields to include in a partial response.
@@ -3654,11 +3656,11 @@ module Google
3654
3656
  execute_or_queue_command(command, &block)
3655
3657
  end
3656
3658
 
3657
- # Deletes a Glossary resource. All the categories and terms within the glossary
3658
- # must be deleted before a glossary can be deleted.
3659
+ # Deletes a Glossary resource. All the categories and terms within the Glossary
3660
+ # must be deleted before the Glossary can be deleted.
3659
3661
  # @param [String] name
3660
- # Required. The name of the Glossary to delete. Format: projects/`project`/
3661
- # locations/`location`/glossary/`glossary`
3662
+ # Required. The name of the Glossary to delete. Format: projects/`
3663
+ # project_id_or_number`/locations/`location_id`/glossaries/`glossary_id`
3662
3664
  # @param [String] etag
3663
3665
  # Optional. The etag of the Glossary. If this is provided, it must match the
3664
3666
  # server's etag. If the etag is provided and does not match the server-computed
@@ -3691,10 +3693,10 @@ module Google
3691
3693
  execute_or_queue_command(command, &block)
3692
3694
  end
3693
3695
 
3694
- # Retrieves a specified Glossary resource.
3696
+ # Gets a Glossary resource.
3695
3697
  # @param [String] name
3696
- # Required. The name of the Glossary to retrieve. Format: projects/`project`/
3697
- # locations/`location`/glossaries/`glossary`
3698
+ # Required. The name of the Glossary to retrieve. Format: projects/`
3699
+ # project_id_or_number`/locations/`location_id`/glossaries/`glossary_id`
3698
3700
  # @param [String] fields
3699
3701
  # Selector specifying which fields to include in a partial response.
3700
3702
  # @param [String] quota_user
@@ -3769,18 +3771,20 @@ module Google
3769
3771
 
3770
3772
  # Lists Glossary resources in a project and location.
3771
3773
  # @param [String] parent
3772
- # Required. The parent, which has this collection of glossaries. Format:
3773
- # projects/`project`/locations/`location` Location is the GCP region.
3774
+ # Required. The parent, which has this collection of Glossaries. Format:
3775
+ # projects/`project_id_or_number`/locations/`location_id` where location_id
3776
+ # refers to a GCP region.
3774
3777
  # @param [String] filter
3775
- # Optional. Filter expression that filters glossaries listed in the response.
3776
- # Initially, no filter is supported.
3778
+ # Optional. Filter expression that filters Glossaries listed in the response.
3779
+ # Filters on proto fields of Glossary are supported. Examples of using a filter
3780
+ # are: - display_name="my-glossary" - categoryCount=1 - termCount=0
3777
3781
  # @param [String] order_by
3778
- # Optional. Order by expression that orders glossaries listed in the response.
3782
+ # Optional. Order by expression that orders Glossaries listed in the response.
3779
3783
  # Order by fields are: name or create_time for the result. If not specified, the
3780
3784
  # ordering is undefined.
3781
3785
  # @param [Fixnum] page_size
3782
- # Optional. The maximum number of glossaries to return. The service may return
3783
- # fewer than this value. If unspecified, at most 50 glossaries will be returned.
3786
+ # Optional. The maximum number of Glossaries to return. The service may return
3787
+ # fewer than this value. If unspecified, at most 50 Glossaries will be returned.
3784
3788
  # The maximum value is 1000; values above 1000 will be coerced to 1000.
3785
3789
  # @param [String] page_token
3786
3790
  # Optional. A page token, received from a previous ListGlossaries call. Provide
@@ -3820,12 +3824,12 @@ module Google
3820
3824
  # Updates a Glossary resource.
3821
3825
  # @param [String] name
3822
3826
  # Output only. Identifier. The resource name of the Glossary. Format: projects/`
3823
- # projectId`/locations/`locationId`/glossaries/`glossaryId`
3827
+ # project_id_or_number`/locations/`location_id`/glossaries/`glossary_id`
3824
3828
  # @param [Google::Apis::DataplexV1::GoogleCloudDataplexV1Glossary] google_cloud_dataplex_v1_glossary_object
3825
3829
  # @param [String] update_mask
3826
3830
  # Required. The list of fields to update.
3827
3831
  # @param [Boolean] validate_only
3828
- # Optional. Validates the request without actually updating the glossary.
3832
+ # Optional. Validates the request without actually updating the Glossary.
3829
3833
  # Default: false.
3830
3834
  # @param [String] fields
3831
3835
  # Selector specifying which fields to include in a partial response.
@@ -3934,15 +3938,14 @@ module Google
3934
3938
  execute_or_queue_command(command, &block)
3935
3939
  end
3936
3940
 
3937
- # GlossaryCategory APIs are CCFE passthrough APIs. Creates a new
3938
- # GlossaryCategory resource.
3941
+ # Creates a new GlossaryCategory resource.
3939
3942
  # @param [String] parent
3940
3943
  # Required. The parent resource where this GlossaryCategory will be created.
3941
- # Format: projects/`projectId`/locations/`locationId`/glossaries/`glossaryId`
3942
- # where locationId refers to a GCP region.
3944
+ # Format: projects/`project_id_or_number`/locations/`location_id`/glossaries/`
3945
+ # glossary_id` where locationId refers to a GCP region.
3943
3946
  # @param [Google::Apis::DataplexV1::GoogleCloudDataplexV1GlossaryCategory] google_cloud_dataplex_v1_glossary_category_object
3944
3947
  # @param [String] category_id
3945
- # Required. Category ID: GlossaryCategory identifier.
3948
+ # Required. GlossaryCategory identifier.
3946
3949
  # @param [String] fields
3947
3950
  # Selector specifying which fields to include in a partial response.
3948
3951
  # @param [String] quota_user
@@ -3973,13 +3976,13 @@ module Google
3973
3976
  execute_or_queue_command(command, &block)
3974
3977
  end
3975
3978
 
3976
- # Deletes a GlossaryCategory resource. All the categories and terms nested
3977
- # directly under the category will be moved one level up to the parent in the
3978
- # hierarchy.
3979
+ # Deletes a GlossaryCategory resource. All the GlossaryCategories and
3980
+ # GlossaryTerms nested directly under the specified GlossaryCategory will be
3981
+ # moved one level up to the parent in the hierarchy.
3979
3982
  # @param [String] name
3980
3983
  # Required. The name of the GlossaryCategory to delete. Format: projects/`
3981
- # project`/locations/`location`/glossary/`glossary`/categories/`
3982
- # glossary_category`
3984
+ # project_id_or_number`/locations/`location_id`/glossaries/`glossary_id`/
3985
+ # categories/`category_id`
3983
3986
  # @param [String] fields
3984
3987
  # Selector specifying which fields to include in a partial response.
3985
3988
  # @param [String] quota_user
@@ -4007,11 +4010,11 @@ module Google
4007
4010
  execute_or_queue_command(command, &block)
4008
4011
  end
4009
4012
 
4010
- # Retrieves a specified GlossaryCategory resource.
4013
+ # Gets a GlossaryCategory resource.
4011
4014
  # @param [String] name
4012
4015
  # Required. The name of the GlossaryCategory to retrieve. Format: projects/`
4013
- # project`/locations/`location`/glossaries/`glossary`/categories/`
4014
- # glossary_category`
4016
+ # project_id_or_number`/locations/`location_id`/glossaries/`glossary_id`/
4017
+ # categories/`category_id`
4015
4018
  # @param [String] fields
4016
4019
  # Selector specifying which fields to include in a partial response.
4017
4020
  # @param [String] quota_user
@@ -4084,25 +4087,28 @@ module Google
4084
4087
  execute_or_queue_command(command, &block)
4085
4088
  end
4086
4089
 
4087
- # Lists GlossaryCategory resources in a glossary.
4090
+ # Lists GlossaryCategory resources in a Glossary.
4088
4091
  # @param [String] parent
4089
- # Required. The parent, which has this collection of categories. Format:
4090
- # projects/`project`/locations/`location`/glossaries/`glossary` Location is the
4091
- # GCP region.
4092
+ # Required. The parent, which has this collection of GlossaryCategories. Format:
4093
+ # projects/`project_id_or_number`/locations/`location_id`/glossaries/`
4094
+ # glossary_id` Location is the GCP region.
4092
4095
  # @param [String] filter
4093
- # Optional. Filter expression that filters categories listed in the response.
4094
- # Filters supported: List GlossaryCategories based on immediate parent in the
4095
- # resource hierarchy. This will only return the GlossaryCategories nested
4096
- # directly under the parent and no other subsequent nested categories will be
4097
- # returned.
4096
+ # Optional. Filter expression that filters GlossaryCategories listed in the
4097
+ # response. Filters are supported on the following fields: -
4098
+ # immediate_parentExamples of using a filter are: - immediate_parent="projects/`
4099
+ # project_id_or_number`/locations/`location_id`/glossaries/`glossary_id`" -
4100
+ # immediate_parent="projects/`project_id_or_number`/locations/`location_id`/
4101
+ # glossaries/`glossary_id`/categories/`category_id`"This will only return the
4102
+ # GlossaryCategories that are directly nested under the specified parent.
4098
4103
  # @param [String] order_by
4099
- # Optional. Order by expression that orders categories listed in the response.
4100
- # Order by fields are: name or create_time for the result. If not specified, the
4101
- # ordering is undefined.
4104
+ # Optional. Order by expression that orders GlossaryCategories listed in the
4105
+ # response. Order by fields are: name or create_time for the result. If not
4106
+ # specified, the ordering is undefined.
4102
4107
  # @param [Fixnum] page_size
4103
- # Optional. The maximum number of categories to return. The service may return
4104
- # fewer than this value. If unspecified, at most 50 categories will be returned.
4105
- # The maximum value is 1000; values above 1000 will be coerced to 1000.
4108
+ # Optional. The maximum number of GlossaryCategories to return. The service may
4109
+ # return fewer than this value. If unspecified, at most 50 GlossaryCategories
4110
+ # will be returned. The maximum value is 1000; values above 1000 will be coerced
4111
+ # to 1000.
4106
4112
  # @param [String] page_token
4107
4113
  # Optional. A page token, received from a previous ListGlossaryCategories call.
4108
4114
  # Provide this to retrieve the subsequent page. When paginating, all other
@@ -4142,8 +4148,8 @@ module Google
4142
4148
  # Updates a GlossaryCategory resource.
4143
4149
  # @param [String] name
4144
4150
  # Output only. Identifier. The resource name of the GlossaryCategory. Format:
4145
- # projects/`projectId`/locations/`locationId`/glossaries/`glossaryId`/categories/
4146
- # `categoryId`
4151
+ # projects/`project_id_or_number`/locations/`location_id`/glossaries/`
4152
+ # glossary_id`/categories/`category_id`
4147
4153
  # @param [Google::Apis::DataplexV1::GoogleCloudDataplexV1GlossaryCategory] google_cloud_dataplex_v1_glossary_category_object
4148
4154
  # @param [String] update_mask
4149
4155
  # Required. The list of fields to update.
@@ -4253,15 +4259,14 @@ module Google
4253
4259
  execute_or_queue_command(command, &block)
4254
4260
  end
4255
4261
 
4256
- # GlossaryTerm APIs are CCFE passthrough APIs. Creates a new GlossaryTerm
4257
- # resource.
4262
+ # Creates a new GlossaryTerm resource.
4258
4263
  # @param [String] parent
4259
- # Required. The parent resource where this GlossaryTerm will be created. Format:
4260
- # projects/`projectId`/locations/`locationId`/glossaries/`glossaryId` where
4261
- # locationId refers to a GCP region.
4264
+ # Required. The parent resource where the GlossaryTerm will be created. Format:
4265
+ # projects/`project_id_or_number`/locations/`location_id`/glossaries/`
4266
+ # glossary_id` where location_id refers to a GCP region.
4262
4267
  # @param [Google::Apis::DataplexV1::GoogleCloudDataplexV1GlossaryTerm] google_cloud_dataplex_v1_glossary_term_object
4263
4268
  # @param [String] term_id
4264
- # Required. Term ID: GlossaryTerm identifier.
4269
+ # Required. GlossaryTerm identifier.
4265
4270
  # @param [String] fields
4266
4271
  # Selector specifying which fields to include in a partial response.
4267
4272
  # @param [String] quota_user
@@ -4294,8 +4299,9 @@ module Google
4294
4299
 
4295
4300
  # Deletes a GlossaryTerm resource.
4296
4301
  # @param [String] name
4297
- # Required. The name of the GlossaryTerm to delete. Format: projects/`project`/
4298
- # locations/`location`/glossary/`glossary`/terms/`glossary_term`
4302
+ # Required. The name of the GlossaryTerm to delete. Format: projects/`
4303
+ # project_id_or_number`/locations/`location_id`/glossaries/`glossary_id`/terms/`
4304
+ # term_id`
4299
4305
  # @param [String] fields
4300
4306
  # Selector specifying which fields to include in a partial response.
4301
4307
  # @param [String] quota_user
@@ -4323,10 +4329,11 @@ module Google
4323
4329
  execute_or_queue_command(command, &block)
4324
4330
  end
4325
4331
 
4326
- # Retrieves a specified GlossaryTerm resource.
4332
+ # Gets a GlossaryTerm resource.
4327
4333
  # @param [String] name
4328
- # Required. The name of the GlossaryTerm to retrieve. Format: projects/`project`/
4329
- # locations/`location`/glossaries/`glossary`/terms/`glossary_term`
4334
+ # Required. The name of the GlossaryTerm to retrieve. Format: projects/`
4335
+ # project_id_or_number`/locations/`location_id`/glossaries/`glossary_id`/terms/`
4336
+ # term_id`
4330
4337
  # @param [String] fields
4331
4338
  # Selector specifying which fields to include in a partial response.
4332
4339
  # @param [String] quota_user
@@ -4399,23 +4406,27 @@ module Google
4399
4406
  execute_or_queue_command(command, &block)
4400
4407
  end
4401
4408
 
4402
- # Lists GlossaryTerm resources in a glossary.
4409
+ # Lists GlossaryTerm resources in a Glossary.
4403
4410
  # @param [String] parent
4404
- # Required. The parent, which has this collection of terms. Format: projects/`
4405
- # project`/locations/`location`/glossaries/`glossary` Location is the GCP region.
4411
+ # Required. The parent, which has this collection of GlossaryTerms. Format:
4412
+ # projects/`project_id_or_number`/locations/`location_id`/glossaries/`
4413
+ # glossary_id` where location_id refers to a GCP region.
4406
4414
  # @param [String] filter
4407
- # Optional. Filter expression that filters terms listed in the response. Filters
4408
- # supported: List GlossaryTerms based on immediate parent in the resource
4409
- # hierarchy. This will only return the terms nested directly under the parent
4410
- # and no other subsequent nested terms will be returned.
4415
+ # Optional. Filter expression that filters GlossaryTerms listed in the response.
4416
+ # Filters are supported on the following fields: - immediate_parentExamples of
4417
+ # using a filter are: - immediate_parent="projects/`project_id_or_number`/
4418
+ # locations/`location_id`/glossaries/`glossary_id`" - immediate_parent="projects/
4419
+ # `project_id_or_number`/locations/`location_id`/glossaries/`glossary_id`/
4420
+ # categories/`category_id`"This will only return the GlossaryTerms that are
4421
+ # directly nested under the specified parent.
4411
4422
  # @param [String] order_by
4412
- # Optional. Order by expression that orders terms listed in the response. Order
4413
- # by fields are: name or create_time for the result. If not specified, the
4414
- # ordering is undefined.
4423
+ # Optional. Order by expression that orders GlossaryTerms listed in the response.
4424
+ # Order by fields are: name or create_time for the result. If not specified,
4425
+ # the ordering is undefined.
4415
4426
  # @param [Fixnum] page_size
4416
- # Optional. The maximum number of terms to return. The service may return fewer
4417
- # than this value. If unspecified, at most 50 terms will be returned. The
4418
- # maximum value is 1000; values above 1000 will be coerced to 1000.
4427
+ # Optional. The maximum number of GlossaryTerms to return. The service may
4428
+ # return fewer than this value. If unspecified, at most 50 GlossaryTerms will be
4429
+ # returned. The maximum value is 1000; values above 1000 will be coerced to 1000.
4419
4430
  # @param [String] page_token
4420
4431
  # Optional. A page token, received from a previous ListGlossaryTerms call.
4421
4432
  # Provide this to retrieve the subsequent page. When paginating, all other
@@ -4455,8 +4466,8 @@ module Google
4455
4466
  # Updates a GlossaryTerm resource.
4456
4467
  # @param [String] name
4457
4468
  # Output only. Identifier. The resource name of the GlossaryTerm. Format:
4458
- # projects/`projectId`/locations/`locationId`/glossaries/`glossaryId`/terms/`
4459
- # termId`
4469
+ # projects/`project_id_or_number`/locations/`location_id`/glossaries/`
4470
+ # glossary_id`/terms/`term_id`
4460
4471
  # @param [Google::Apis::DataplexV1::GoogleCloudDataplexV1GlossaryTerm] google_cloud_dataplex_v1_glossary_term_object
4461
4472
  # @param [String] update_mask
4462
4473
  # Required. The list of fields to update.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dataplex_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.74.0
4
+ version: 0.76.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -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.74.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.76.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:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.8
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Cloud Dataplex API V1
79
79
  test_files: []