google-apis-datacatalog_v1beta1 0.23.0 → 0.24.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9ad5322f1572c65cb8c0e229af0b6549c1734df1dd3e0597d4235fc7da1e3747
4
- data.tar.gz: 1e7f40d4226e10d7a38d2f07f8fe5287adcae0dfabb8262937ee7fe0a0d5ec22
3
+ metadata.gz: 06f152babc26dc42b1b14576f8b5a62b3eb751c092504314d99352f4069c9b4e
4
+ data.tar.gz: b9be4daf4f8146bfd7e6adf2b9de65adfd7c19ef583623579be9def81688baea
5
5
  SHA512:
6
- metadata.gz: 949b5bbb7a5d163ebcc70d73ea736630d18cc9a9a4f36afd3878e6db53147be333ae74a1650cce5e6106d4b411863a12bd7e6f8d4da0a6a63a6f65868b51b850
7
- data.tar.gz: f0bdfd6fdb08e182a67a3dbbfb053d5c8d43711501af36f3b1b4355fa7dcbb5a96a79da12955c522e429882ec63ed0f2abf85ab47be1939d680f1c9fdd7d4aba
6
+ metadata.gz: c80d6d1a31fa3f48ef4137cca03f6e65b231e86bd4f963950a36b4dc3a269f793b0fe35f7376c425498626ebbb89d0a5a8fe1ab9a05a7b449f74fafe81aaae9b
7
+ data.tar.gz: 9ae80f3fabe6067cb5cc40965eb774502188ab25b063fdb4746d60f4bc05d16ea2bae7c59b5ccd441d88db83ff0e33dd830bba09e029bd3f91b1539e355cccc2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-datacatalog_v1beta1
2
2
 
3
+ ### v0.24.0 (2022-12-14)
4
+
5
+ * Regenerated from discovery document revision 20221203
6
+
3
7
  ### v0.23.0 (2022-10-31)
4
8
 
5
9
  * Regenerated using generator version 0.11.0
@@ -215,6 +215,59 @@ module Google
215
215
  end
216
216
  end
217
217
 
218
+ # Metadata message for long-running operation returned by the ImportEntries.
219
+ class GoogleCloudDatacatalogV1ImportEntriesMetadata
220
+ include Google::Apis::Core::Hashable
221
+
222
+ # Partial errors that are encountered during the ImportEntries operation. There
223
+ # is no guarantee that all the encountered errors are reported. However, if no
224
+ # errors are reported, it means that no errors were encountered.
225
+ # Corresponds to the JSON property `errors`
226
+ # @return [Array<Google::Apis::DatacatalogV1beta1::Status>]
227
+ attr_accessor :errors
228
+
229
+ # State of the import operation.
230
+ # Corresponds to the JSON property `state`
231
+ # @return [String]
232
+ attr_accessor :state
233
+
234
+ def initialize(**args)
235
+ update!(**args)
236
+ end
237
+
238
+ # Update properties of this object
239
+ def update!(**args)
240
+ @errors = args[:errors] if args.key?(:errors)
241
+ @state = args[:state] if args.key?(:state)
242
+ end
243
+ end
244
+
245
+ # Response message for long-running operation returned by the ImportEntries.
246
+ class GoogleCloudDatacatalogV1ImportEntriesResponse
247
+ include Google::Apis::Core::Hashable
248
+
249
+ # Number of entries deleted as a result of import operation.
250
+ # Corresponds to the JSON property `deletedEntriesCount`
251
+ # @return [Fixnum]
252
+ attr_accessor :deleted_entries_count
253
+
254
+ # Cumulative number of entries created and entries updated as a result of import
255
+ # operation.
256
+ # Corresponds to the JSON property `upsertedEntriesCount`
257
+ # @return [Fixnum]
258
+ attr_accessor :upserted_entries_count
259
+
260
+ def initialize(**args)
261
+ update!(**args)
262
+ end
263
+
264
+ # Update properties of this object
265
+ def update!(**args)
266
+ @deleted_entries_count = args[:deleted_entries_count] if args.key?(:deleted_entries_count)
267
+ @upserted_entries_count = args[:upserted_entries_count] if args.key?(:upserted_entries_count)
268
+ end
269
+ end
270
+
218
271
  # Spec for a group of BigQuery tables with name pattern `[prefix]YYYYMMDD`.
219
272
  # Context: https://cloud.google.com/bigquery/docs/partitioned-tables#
220
273
  # partitioning_versus_sharding
@@ -1808,6 +1861,45 @@ module Google
1808
1861
  end
1809
1862
  end
1810
1863
 
1864
+ # The `Status` type defines a logical error model that is suitable for different
1865
+ # programming environments, including REST APIs and RPC APIs. It is used by [
1866
+ # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
1867
+ # data: error code, error message, and error details. You can find out more
1868
+ # about this error model and how to work with it in the [API Design Guide](https:
1869
+ # //cloud.google.com/apis/design/errors).
1870
+ class Status
1871
+ include Google::Apis::Core::Hashable
1872
+
1873
+ # The status code, which should be an enum value of google.rpc.Code.
1874
+ # Corresponds to the JSON property `code`
1875
+ # @return [Fixnum]
1876
+ attr_accessor :code
1877
+
1878
+ # A list of messages that carry the error details. There is a common set of
1879
+ # message types for APIs to use.
1880
+ # Corresponds to the JSON property `details`
1881
+ # @return [Array<Hash<String,Object>>]
1882
+ attr_accessor :details
1883
+
1884
+ # A developer-facing error message, which should be in English. Any user-facing
1885
+ # error message should be localized and sent in the google.rpc.Status.details
1886
+ # field, or localized by the client.
1887
+ # Corresponds to the JSON property `message`
1888
+ # @return [String]
1889
+ attr_accessor :message
1890
+
1891
+ def initialize(**args)
1892
+ update!(**args)
1893
+ end
1894
+
1895
+ # Update properties of this object
1896
+ def update!(**args)
1897
+ @code = args[:code] if args.key?(:code)
1898
+ @details = args[:details] if args.key?(:details)
1899
+ @message = args[:message] if args.key?(:message)
1900
+ end
1901
+ end
1902
+
1811
1903
  # Request message for `TestIamPermissions` method.
1812
1904
  class TestIamPermissionsRequest
1813
1905
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatacatalogV1beta1
18
18
  # Version of the google-apis-datacatalog_v1beta1 gem
19
- GEM_VERSION = "0.23.0"
19
+ GEM_VERSION = "0.24.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220826"
25
+ REVISION = "20221203"
26
26
  end
27
27
  end
28
28
  end
@@ -52,6 +52,18 @@ module Google
52
52
  include Google::Apis::Core::JsonObjectSupport
53
53
  end
54
54
 
55
+ class GoogleCloudDatacatalogV1ImportEntriesMetadata
56
+ class Representation < Google::Apis::Core::JsonRepresentation; end
57
+
58
+ include Google::Apis::Core::JsonObjectSupport
59
+ end
60
+
61
+ class GoogleCloudDatacatalogV1ImportEntriesResponse
62
+ class Representation < Google::Apis::Core::JsonRepresentation; end
63
+
64
+ include Google::Apis::Core::JsonObjectSupport
65
+ end
66
+
55
67
  class GoogleCloudDatacatalogV1beta1BigQueryDateShardedSpec
56
68
  class Representation < Google::Apis::Core::JsonRepresentation; end
57
69
 
@@ -304,6 +316,12 @@ module Google
304
316
  include Google::Apis::Core::JsonObjectSupport
305
317
  end
306
318
 
319
+ class Status
320
+ class Representation < Google::Apis::Core::JsonRepresentation; end
321
+
322
+ include Google::Apis::Core::JsonObjectSupport
323
+ end
324
+
307
325
  class TestIamPermissionsRequest
308
326
  class Representation < Google::Apis::Core::JsonRepresentation; end
309
327
 
@@ -357,6 +375,23 @@ module Google
357
375
  end
358
376
  end
359
377
 
378
+ class GoogleCloudDatacatalogV1ImportEntriesMetadata
379
+ # @private
380
+ class Representation < Google::Apis::Core::JsonRepresentation
381
+ collection :errors, as: 'errors', class: Google::Apis::DatacatalogV1beta1::Status, decorator: Google::Apis::DatacatalogV1beta1::Status::Representation
382
+
383
+ property :state, as: 'state'
384
+ end
385
+ end
386
+
387
+ class GoogleCloudDatacatalogV1ImportEntriesResponse
388
+ # @private
389
+ class Representation < Google::Apis::Core::JsonRepresentation
390
+ property :deleted_entries_count, :numeric_string => true, as: 'deletedEntriesCount'
391
+ property :upserted_entries_count, :numeric_string => true, as: 'upsertedEntriesCount'
392
+ end
393
+ end
394
+
360
395
  class GoogleCloudDatacatalogV1beta1BigQueryDateShardedSpec
361
396
  # @private
362
397
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -773,6 +808,15 @@ module Google
773
808
  end
774
809
  end
775
810
 
811
+ class Status
812
+ # @private
813
+ class Representation < Google::Apis::Core::JsonRepresentation
814
+ property :code, as: 'code'
815
+ collection :details, as: 'details'
816
+ property :message, as: 'message'
817
+ end
818
+ end
819
+
776
820
  class TestIamPermissionsRequest
777
821
  # @private
778
822
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datacatalog_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.23.0
4
+ version: 0.24.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: 2022-11-07 00:00:00.000000000 Z
11
+ date: 2023-01-04 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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1beta1/v0.23.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1beta1/v0.24.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datacatalog_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []