google-apis-dataplex_v1 0.75.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: 48908da71c22268c0c64a2d14de8dea4a3ee6175f4db845e05cbcb93f88676a0
4
- data.tar.gz: 186d2006644a26f6668fe4ba189a14ecf3bda9e653becf4c94e4fc10c09009a5
3
+ metadata.gz: 2227be65ad8b7bfa163f58eb8d29b860a894c78dece5d339afd369c4c750f8ec
4
+ data.tar.gz: 0cc20c2375a219d53ebfcce22caba16d21791dd12674849b2d9997a9e2f0efee
5
5
  SHA512:
6
- metadata.gz: d8ed52d82d7329333310d85145b52bd9b00e73d140a42b8b6c745876706aa096b689a8284e0f589c61d853931c82aa96f30024e2248c36011748e12a9953804e
7
- data.tar.gz: 586e404b179a2e2bc2a4597bbd63c43c853a2687da111126c6a1c05925075edb6dda9a0d622635da908e1bd76995b0c84f2a53737ebbe03326788ecd2fe3b3ed
6
+ metadata.gz: b7a93eeca6578a058f95ded767ec258e19b1933c0676af5635d4b3bda7b493042b616febc66e5762782c438d6813dde1ebf9362cc5fd2141f21a5cdb48665f74
7
+ data.tar.gz: 5ec2e117037d26c2d1adf6e15a1b0c3cde8d470eaa61ac94df28d5f2e36119388716b60db4391299e7cf246037d65340789539408572491f53fb56245eda93a9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
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
+
3
8
  ### v0.75.0 (2025-05-21)
4
9
 
5
10
  * Regenerated from discovery document revision 20250513
@@ -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)
@@ -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.75.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 = "20250513"
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
 
@@ -3617,13 +3617,13 @@ module Google
3617
3617
  # Creates a new Glossary resource.
3618
3618
  # @param [String] parent
3619
3619
  # Required. The parent resource where this Glossary will be created. Format:
3620
- # projects/`projectId`/locations/`locationId` where locationId refers to a GCP
3621
- # region.
3620
+ # projects/`project_id_or_number`/locations/`location_id` where location_id
3621
+ # refers to a GCP region.
3622
3622
  # @param [Google::Apis::DataplexV1::GoogleCloudDataplexV1Glossary] google_cloud_dataplex_v1_glossary_object
3623
3623
  # @param [String] glossary_id
3624
3624
  # Required. Glossary ID: Glossary identifier.
3625
3625
  # @param [Boolean] validate_only
3626
- # Optional. Validates the request without actually creating the glossary.
3626
+ # Optional. Validates the request without actually creating the Glossary.
3627
3627
  # Default: false.
3628
3628
  # @param [String] fields
3629
3629
  # Selector specifying which fields to include in a partial response.
@@ -3656,11 +3656,11 @@ module Google
3656
3656
  execute_or_queue_command(command, &block)
3657
3657
  end
3658
3658
 
3659
- # Deletes a Glossary resource. All the categories and terms within the glossary
3660
- # 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.
3661
3661
  # @param [String] name
3662
- # Required. The name of the Glossary to delete. Format: projects/`project`/
3663
- # 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`
3664
3664
  # @param [String] etag
3665
3665
  # Optional. The etag of the Glossary. If this is provided, it must match the
3666
3666
  # server's etag. If the etag is provided and does not match the server-computed
@@ -3693,10 +3693,10 @@ module Google
3693
3693
  execute_or_queue_command(command, &block)
3694
3694
  end
3695
3695
 
3696
- # Retrieves a specified Glossary resource.
3696
+ # Gets a Glossary resource.
3697
3697
  # @param [String] name
3698
- # Required. The name of the Glossary to retrieve. Format: projects/`project`/
3699
- # 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`
3700
3700
  # @param [String] fields
3701
3701
  # Selector specifying which fields to include in a partial response.
3702
3702
  # @param [String] quota_user
@@ -3771,18 +3771,20 @@ module Google
3771
3771
 
3772
3772
  # Lists Glossary resources in a project and location.
3773
3773
  # @param [String] parent
3774
- # Required. The parent, which has this collection of glossaries. Format:
3775
- # 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.
3776
3777
  # @param [String] filter
3777
- # Optional. Filter expression that filters glossaries listed in the response.
3778
- # 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
3779
3781
  # @param [String] order_by
3780
- # Optional. Order by expression that orders glossaries listed in the response.
3782
+ # Optional. Order by expression that orders Glossaries listed in the response.
3781
3783
  # Order by fields are: name or create_time for the result. If not specified, the
3782
3784
  # ordering is undefined.
3783
3785
  # @param [Fixnum] page_size
3784
- # Optional. The maximum number of glossaries to return. The service may return
3785
- # 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.
3786
3788
  # The maximum value is 1000; values above 1000 will be coerced to 1000.
3787
3789
  # @param [String] page_token
3788
3790
  # Optional. A page token, received from a previous ListGlossaries call. Provide
@@ -3822,12 +3824,12 @@ module Google
3822
3824
  # Updates a Glossary resource.
3823
3825
  # @param [String] name
3824
3826
  # Output only. Identifier. The resource name of the Glossary. Format: projects/`
3825
- # projectId`/locations/`locationId`/glossaries/`glossaryId`
3827
+ # project_id_or_number`/locations/`location_id`/glossaries/`glossary_id`
3826
3828
  # @param [Google::Apis::DataplexV1::GoogleCloudDataplexV1Glossary] google_cloud_dataplex_v1_glossary_object
3827
3829
  # @param [String] update_mask
3828
3830
  # Required. The list of fields to update.
3829
3831
  # @param [Boolean] validate_only
3830
- # Optional. Validates the request without actually updating the glossary.
3832
+ # Optional. Validates the request without actually updating the Glossary.
3831
3833
  # Default: false.
3832
3834
  # @param [String] fields
3833
3835
  # Selector specifying which fields to include in a partial response.
@@ -3936,15 +3938,14 @@ module Google
3936
3938
  execute_or_queue_command(command, &block)
3937
3939
  end
3938
3940
 
3939
- # GlossaryCategory APIs are CCFE passthrough APIs. Creates a new
3940
- # GlossaryCategory resource.
3941
+ # Creates a new GlossaryCategory resource.
3941
3942
  # @param [String] parent
3942
3943
  # Required. The parent resource where this GlossaryCategory will be created.
3943
- # Format: projects/`projectId`/locations/`locationId`/glossaries/`glossaryId`
3944
- # 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.
3945
3946
  # @param [Google::Apis::DataplexV1::GoogleCloudDataplexV1GlossaryCategory] google_cloud_dataplex_v1_glossary_category_object
3946
3947
  # @param [String] category_id
3947
- # Required. Category ID: GlossaryCategory identifier.
3948
+ # Required. GlossaryCategory identifier.
3948
3949
  # @param [String] fields
3949
3950
  # Selector specifying which fields to include in a partial response.
3950
3951
  # @param [String] quota_user
@@ -3975,13 +3976,13 @@ module Google
3975
3976
  execute_or_queue_command(command, &block)
3976
3977
  end
3977
3978
 
3978
- # Deletes a GlossaryCategory resource. All the categories and terms nested
3979
- # directly under the category will be moved one level up to the parent in the
3980
- # 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.
3981
3982
  # @param [String] name
3982
3983
  # Required. The name of the GlossaryCategory to delete. Format: projects/`
3983
- # project`/locations/`location`/glossary/`glossary`/categories/`
3984
- # glossary_category`
3984
+ # project_id_or_number`/locations/`location_id`/glossaries/`glossary_id`/
3985
+ # categories/`category_id`
3985
3986
  # @param [String] fields
3986
3987
  # Selector specifying which fields to include in a partial response.
3987
3988
  # @param [String] quota_user
@@ -4009,11 +4010,11 @@ module Google
4009
4010
  execute_or_queue_command(command, &block)
4010
4011
  end
4011
4012
 
4012
- # Retrieves a specified GlossaryCategory resource.
4013
+ # Gets a GlossaryCategory resource.
4013
4014
  # @param [String] name
4014
4015
  # Required. The name of the GlossaryCategory to retrieve. Format: projects/`
4015
- # project`/locations/`location`/glossaries/`glossary`/categories/`
4016
- # glossary_category`
4016
+ # project_id_or_number`/locations/`location_id`/glossaries/`glossary_id`/
4017
+ # categories/`category_id`
4017
4018
  # @param [String] fields
4018
4019
  # Selector specifying which fields to include in a partial response.
4019
4020
  # @param [String] quota_user
@@ -4086,25 +4087,28 @@ module Google
4086
4087
  execute_or_queue_command(command, &block)
4087
4088
  end
4088
4089
 
4089
- # Lists GlossaryCategory resources in a glossary.
4090
+ # Lists GlossaryCategory resources in a Glossary.
4090
4091
  # @param [String] parent
4091
- # Required. The parent, which has this collection of categories. Format:
4092
- # projects/`project`/locations/`location`/glossaries/`glossary` Location is the
4093
- # 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.
4094
4095
  # @param [String] filter
4095
- # Optional. Filter expression that filters categories listed in the response.
4096
- # Filters supported: List GlossaryCategories based on immediate parent in the
4097
- # resource hierarchy. This will only return the GlossaryCategories nested
4098
- # directly under the parent and no other subsequent nested categories will be
4099
- # 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.
4100
4103
  # @param [String] order_by
4101
- # Optional. Order by expression that orders categories listed in the response.
4102
- # Order by fields are: name or create_time for the result. If not specified, the
4103
- # 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.
4104
4107
  # @param [Fixnum] page_size
4105
- # Optional. The maximum number of categories to return. The service may return
4106
- # fewer than this value. If unspecified, at most 50 categories will be returned.
4107
- # 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.
4108
4112
  # @param [String] page_token
4109
4113
  # Optional. A page token, received from a previous ListGlossaryCategories call.
4110
4114
  # Provide this to retrieve the subsequent page. When paginating, all other
@@ -4144,8 +4148,8 @@ module Google
4144
4148
  # Updates a GlossaryCategory resource.
4145
4149
  # @param [String] name
4146
4150
  # Output only. Identifier. The resource name of the GlossaryCategory. Format:
4147
- # projects/`projectId`/locations/`locationId`/glossaries/`glossaryId`/categories/
4148
- # `categoryId`
4151
+ # projects/`project_id_or_number`/locations/`location_id`/glossaries/`
4152
+ # glossary_id`/categories/`category_id`
4149
4153
  # @param [Google::Apis::DataplexV1::GoogleCloudDataplexV1GlossaryCategory] google_cloud_dataplex_v1_glossary_category_object
4150
4154
  # @param [String] update_mask
4151
4155
  # Required. The list of fields to update.
@@ -4255,15 +4259,14 @@ module Google
4255
4259
  execute_or_queue_command(command, &block)
4256
4260
  end
4257
4261
 
4258
- # GlossaryTerm APIs are CCFE passthrough APIs. Creates a new GlossaryTerm
4259
- # resource.
4262
+ # Creates a new GlossaryTerm resource.
4260
4263
  # @param [String] parent
4261
- # Required. The parent resource where this GlossaryTerm will be created. Format:
4262
- # projects/`projectId`/locations/`locationId`/glossaries/`glossaryId` where
4263
- # 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.
4264
4267
  # @param [Google::Apis::DataplexV1::GoogleCloudDataplexV1GlossaryTerm] google_cloud_dataplex_v1_glossary_term_object
4265
4268
  # @param [String] term_id
4266
- # Required. Term ID: GlossaryTerm identifier.
4269
+ # Required. GlossaryTerm identifier.
4267
4270
  # @param [String] fields
4268
4271
  # Selector specifying which fields to include in a partial response.
4269
4272
  # @param [String] quota_user
@@ -4296,8 +4299,9 @@ module Google
4296
4299
 
4297
4300
  # Deletes a GlossaryTerm resource.
4298
4301
  # @param [String] name
4299
- # Required. The name of the GlossaryTerm to delete. Format: projects/`project`/
4300
- # 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`
4301
4305
  # @param [String] fields
4302
4306
  # Selector specifying which fields to include in a partial response.
4303
4307
  # @param [String] quota_user
@@ -4325,10 +4329,11 @@ module Google
4325
4329
  execute_or_queue_command(command, &block)
4326
4330
  end
4327
4331
 
4328
- # Retrieves a specified GlossaryTerm resource.
4332
+ # Gets a GlossaryTerm resource.
4329
4333
  # @param [String] name
4330
- # Required. The name of the GlossaryTerm to retrieve. Format: projects/`project`/
4331
- # 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`
4332
4337
  # @param [String] fields
4333
4338
  # Selector specifying which fields to include in a partial response.
4334
4339
  # @param [String] quota_user
@@ -4401,23 +4406,27 @@ module Google
4401
4406
  execute_or_queue_command(command, &block)
4402
4407
  end
4403
4408
 
4404
- # Lists GlossaryTerm resources in a glossary.
4409
+ # Lists GlossaryTerm resources in a Glossary.
4405
4410
  # @param [String] parent
4406
- # Required. The parent, which has this collection of terms. Format: projects/`
4407
- # 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.
4408
4414
  # @param [String] filter
4409
- # Optional. Filter expression that filters terms listed in the response. Filters
4410
- # supported: List GlossaryTerms based on immediate parent in the resource
4411
- # hierarchy. This will only return the terms nested directly under the parent
4412
- # 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.
4413
4422
  # @param [String] order_by
4414
- # Optional. Order by expression that orders terms listed in the response. Order
4415
- # by fields are: name or create_time for the result. If not specified, the
4416
- # 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.
4417
4426
  # @param [Fixnum] page_size
4418
- # Optional. The maximum number of terms to return. The service may return fewer
4419
- # than this value. If unspecified, at most 50 terms will be returned. The
4420
- # 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.
4421
4430
  # @param [String] page_token
4422
4431
  # Optional. A page token, received from a previous ListGlossaryTerms call.
4423
4432
  # Provide this to retrieve the subsequent page. When paginating, all other
@@ -4457,8 +4466,8 @@ module Google
4457
4466
  # Updates a GlossaryTerm resource.
4458
4467
  # @param [String] name
4459
4468
  # Output only. Identifier. The resource name of the GlossaryTerm. Format:
4460
- # projects/`projectId`/locations/`locationId`/glossaries/`glossaryId`/terms/`
4461
- # termId`
4469
+ # projects/`project_id_or_number`/locations/`location_id`/glossaries/`
4470
+ # glossary_id`/terms/`term_id`
4462
4471
  # @param [Google::Apis::DataplexV1::GoogleCloudDataplexV1GlossaryTerm] google_cloud_dataplex_v1_glossary_term_object
4463
4472
  # @param [String] update_mask
4464
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.75.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.75.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: