google-apis-datacatalog_v1 0.35.0 → 0.36.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: 201dc64211397f69fae1e84f5b14ba8d0589745c1c96fbf3a2c1a3455fd833ce
4
- data.tar.gz: 5d42e1470678bff9352bdce87d924402d4dbfdc9cd0ef5134ff17741f8163c7a
3
+ metadata.gz: b15113c59de14c536ba7574df16a4c47ef4a357173fcbdc5dcfaddd69b7ae560
4
+ data.tar.gz: fcd904818827b65cfa8ae4abf3bea92d8944b4e54e17c316aef94863fa7cb553
5
5
  SHA512:
6
- metadata.gz: 0f48c2c962a1807a96c0eeadd5b45f5c56495d3fb7501e1edf11bc0c2a278092f16f03bd74666a6f2eeb49d8ac68aa0f7684281ba92905a68eba60b600c21415
7
- data.tar.gz: e64d1f8a925eb0a6bd0cd96621af6e30770ec1af67dcc2e10a7dd56c9d5c4f869be722e69008afe3efc821f07661eedac1363c2f51383d2e7c9a6e11c9164203
6
+ metadata.gz: 3a60af0da61b5d4beb64dc0229b5c162d8eff81b28c032e04f42e291fc7a993d2e6d307923a6ee9baa2b5c371473a07069b238261cda3b5864068ae28237e38a
7
+ data.tar.gz: b249ff60047af58f548b0f68c94ad623a26be5ba65f5e8721c1b6c38f35907918d49cffbc519e1cead40763991f0f80dc76985418411abf5b59907df623d5314
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-datacatalog_v1
2
2
 
3
+ ### v0.36.0 (2023-04-23)
4
+
5
+ * Regenerated from discovery document revision 20230414
6
+
3
7
  ### v0.35.0 (2023-04-16)
4
8
 
5
9
  * Regenerated from discovery document revision 20230404
@@ -1008,14 +1008,10 @@ module Google
1008
1008
  # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1FilesetSpec]
1009
1009
  attr_accessor :fileset_spec
1010
1010
 
1011
- # Fully qualified name (FQN) of the resource. Set automatically for entries
1012
- # representing resources from synced systems. Settable only during creation and
1013
- # read-only afterwards. Can be used for search and lookup of the entries. FQNs
1014
- # take two forms: * For non-regionalized resources: ``SYSTEM`:`PROJECT`.`
1015
- # PATH_TO_RESOURCE_SEPARATED_WITH_DOTS`` * For regionalized resources: ``SYSTEM`:
1016
- # `PROJECT`.`LOCATION_ID`.`PATH_TO_RESOURCE_SEPARATED_WITH_DOTS`` Example for a
1017
- # DPMS table: `dataproc_metastore:`PROJECT_ID`.`LOCATION_ID`.`INSTANCE_ID`.`
1018
- # DATABASE_ID`.`TABLE_ID``
1011
+ # [Fully Qualified Name (FQN)](https://cloud.google.com//data-catalog/docs/fully-
1012
+ # qualified-names) of the resource. Set automatically for entries representing
1013
+ # resources from synced systems. Settable only during creation, and read-only
1014
+ # later. Can be used for search and lookup of the entries.
1019
1015
  # Corresponds to the JSON property `fullyQualifiedName`
1020
1016
  # @return [String]
1021
1017
  attr_accessor :fully_qualified_name
@@ -2390,6 +2386,11 @@ module Google
2390
2386
  # @return [Array<Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SearchCatalogResult>]
2391
2387
  attr_accessor :results
2392
2388
 
2389
+ # The approximate total number of entries matched by the query.
2390
+ # Corresponds to the JSON property `totalSize`
2391
+ # @return [Fixnum]
2392
+ attr_accessor :total_size
2393
+
2393
2394
  # Unreachable locations. Search results don't include data from those locations.
2394
2395
  # To get additional information on an error, repeat the search request and
2395
2396
  # restrict it to specific locations by setting the `SearchCatalogRequest.scope.
@@ -2406,6 +2407,7 @@ module Google
2406
2407
  def update!(**args)
2407
2408
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2408
2409
  @results = args[:results] if args.key?(:results)
2410
+ @total_size = args[:total_size] if args.key?(:total_size)
2409
2411
  @unreachable = args[:unreachable] if args.key?(:unreachable)
2410
2412
  end
2411
2413
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatacatalogV1
18
18
  # Version of the google-apis-datacatalog_v1 gem
19
- GEM_VERSION = "0.35.0"
19
+ GEM_VERSION = "0.36.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230404"
25
+ REVISION = "20230414"
26
26
  end
27
27
  end
28
28
  end
@@ -1348,6 +1348,7 @@ module Google
1348
1348
  property :next_page_token, as: 'nextPageToken'
1349
1349
  collection :results, as: 'results', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SearchCatalogResult, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SearchCatalogResult::Representation
1350
1350
 
1351
+ property :total_size, as: 'totalSize'
1351
1352
  collection :unreachable, as: 'unreachable'
1352
1353
  end
1353
1354
  end
@@ -92,12 +92,13 @@ module Google
92
92
  # Gets an entry by its target resource name. The resource name comes from the
93
93
  # source Google Cloud Platform service.
94
94
  # @param [String] fully_qualified_name
95
- # Fully qualified name (FQN) of the resource. FQNs take two forms: * For non-
96
- # regionalized resources: ``SYSTEM`:`PROJECT`.`
97
- # PATH_TO_RESOURCE_SEPARATED_WITH_DOTS`` * For regionalized resources: ``SYSTEM`:
98
- # `PROJECT`.`LOCATION_ID`.`PATH_TO_RESOURCE_SEPARATED_WITH_DOTS`` Example for a
99
- # DPMS table: `dataproc_metastore:`PROJECT_ID`.`LOCATION_ID`.`INSTANCE_ID`.`
100
- # DATABASE_ID`.`TABLE_ID``
95
+ # [Fully Qualified Name (FQN)](https://cloud.google.com//data-catalog/docs/fully-
96
+ # qualified-names) of the resource. FQNs take two forms: * For non-regionalized
97
+ # resources: ``SYSTEM`:`PROJECT`.`PATH_TO_RESOURCE_SEPARATED_WITH_DOTS`` * For
98
+ # regionalized resources: ``SYSTEM`:`PROJECT`.`LOCATION_ID`.`
99
+ # PATH_TO_RESOURCE_SEPARATED_WITH_DOTS`` Example for a DPMS table: `
100
+ # dataproc_metastore:`PROJECT_ID`.`LOCATION_ID`.`INSTANCE_ID`.`DATABASE_ID`.`
101
+ # TABLE_ID``
101
102
  # @param [String] linked_resource
102
103
  # The full name of the Google Cloud Platform resource the Data Catalog entry
103
104
  # represents. For more information, see [Full Resource Name] (https://cloud.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datacatalog_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.35.0
4
+ version: 0.36.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-04-16 00:00:00.000000000 Z
11
+ date: 2023-04-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datacatalog_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1/v0.35.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1/v0.36.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datacatalog_v1
63
63
  post_install_message:
64
64
  rdoc_options: []