google-apis-datacatalog_v1beta1 0.25.0 → 0.26.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: dc58464c8dbb0a08a5d0afbf3f549642e355780edccda97ebb95bda1b02cf2ac
4
- data.tar.gz: 9bc9d3cf4e17050ef43ddb31ea70ae946086e2791bef8f1e56ade706086132e5
3
+ metadata.gz: 70942eb20de9647a327708b598729c4a1c72eccf164efd1365ce57a8b85e2362
4
+ data.tar.gz: e4e96b260b70597dedc5efa89c034ea58e6275a1f3da247d3f270bfa32322eac
5
5
  SHA512:
6
- metadata.gz: fff8606146e0f481057864fd0d184474b09a66ce3b0e014b7a56d890a5713cb1361026a2a9dadea104e71a02d39f9db24f516cfe80eb8c55ac14251a7d346208
7
- data.tar.gz: be2131347e8643065edb844bf14513d02ddf84d577c5646cf2523dea1fb4cb8627460f65639af4eb67d03e864c272c8e4b615f6e488ee646d94f5c03e1dc8fbc
6
+ metadata.gz: d414c12e2e3247082e1b93656a15a68854710ba969bedb92d1ec5b2af4813670cb87de530cb29ab9a08857ec95d913059638cac100d6ea796d5e5848ea9d5770
7
+ data.tar.gz: 7b1a61ac53f15c51290905758a0c656001c86c8b0fa3bd93a882bdef4495cf9f180fabe8b34e0845810ec0c0aa5668a266c02d6bbd2ced7e1119f24e2bfe9870
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-datacatalog_v1beta1
2
2
 
3
+ ### v0.26.0 (2023-02-05)
4
+
5
+ * Regenerated from discovery document revision 20230127
6
+
3
7
  ### v0.25.0 (2023-01-22)
4
8
 
5
9
  * Regenerated from discovery document revision 20230117
@@ -60,22 +60,22 @@ module Google
60
60
  # kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-
61
61
  # project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:`emailid``: An
62
62
  # email address that represents a Google group. For example, `admins@example.com`
63
- # . * `deleted:user:`emailid`?uid=`uniqueid``: An email address (plus unique
64
- # identifier) representing a user that has been recently deleted. For example, `
65
- # alice@example.com?uid=123456789012345678901`. If the user is recovered, this
66
- # value reverts to `user:`emailid`` and the recovered user retains the role in
67
- # the binding. * `deleted:serviceAccount:`emailid`?uid=`uniqueid``: An email
68
- # address (plus unique identifier) representing a service account that has been
69
- # recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=
63
+ # . * `domain:`domain``: The G Suite domain (primary) that represents all the
64
+ # users of that domain. For example, `google.com` or `example.com`. * `deleted:
65
+ # user:`emailid`?uid=`uniqueid``: An email address (plus unique identifier)
66
+ # representing a user that has been recently deleted. For example, `alice@
67
+ # example.com?uid=123456789012345678901`. If the user is recovered, this value
68
+ # reverts to `user:`emailid`` and the recovered user retains the role in the
69
+ # binding. * `deleted:serviceAccount:`emailid`?uid=`uniqueid``: An email address
70
+ # (plus unique identifier) representing a service account that has been recently
71
+ # deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=
70
72
  # 123456789012345678901`. If the service account is undeleted, this value
71
73
  # reverts to `serviceAccount:`emailid`` and the undeleted service account
72
74
  # retains the role in the binding. * `deleted:group:`emailid`?uid=`uniqueid``:
73
75
  # An email address (plus unique identifier) representing a Google group that has
74
76
  # been recently deleted. For example, `admins@example.com?uid=
75
77
  # 123456789012345678901`. If the group is recovered, this value reverts to `
76
- # group:`emailid`` and the recovered group retains the role in the binding. * `
77
- # domain:`domain``: The G Suite domain (primary) that represents all the users
78
- # of that domain. For example, `google.com` or `example.com`.
78
+ # group:`emailid`` and the recovered group retains the role in the binding.
79
79
  # Corresponds to the JSON property `members`
80
80
  # @return [Array<String>]
81
81
  attr_accessor :members
@@ -268,6 +268,63 @@ module Google
268
268
  end
269
269
  end
270
270
 
271
+ # Metadata message for long-running operation returned by the ReconcileTags.
272
+ class GoogleCloudDatacatalogV1ReconcileTagsMetadata
273
+ include Google::Apis::Core::Hashable
274
+
275
+ # Map that maps name of each tagged column (or empty string in case of sole
276
+ # entry) to tagging operation status.
277
+ # Corresponds to the JSON property `errors`
278
+ # @return [Hash<String,Google::Apis::DatacatalogV1beta1::Status>]
279
+ attr_accessor :errors
280
+
281
+ # State of the reconciliation operation.
282
+ # Corresponds to the JSON property `state`
283
+ # @return [String]
284
+ attr_accessor :state
285
+
286
+ def initialize(**args)
287
+ update!(**args)
288
+ end
289
+
290
+ # Update properties of this object
291
+ def update!(**args)
292
+ @errors = args[:errors] if args.key?(:errors)
293
+ @state = args[:state] if args.key?(:state)
294
+ end
295
+ end
296
+
297
+ # Request message for long-running operation returned by the ReconcileTags.
298
+ class GoogleCloudDatacatalogV1ReconcileTagsResponse
299
+ include Google::Apis::Core::Hashable
300
+
301
+ # Number of tags created in the request.
302
+ # Corresponds to the JSON property `createdTagsCount`
303
+ # @return [Fixnum]
304
+ attr_accessor :created_tags_count
305
+
306
+ # Number of tags deleted in the request.
307
+ # Corresponds to the JSON property `deletedTagsCount`
308
+ # @return [Fixnum]
309
+ attr_accessor :deleted_tags_count
310
+
311
+ # Number of tags updated in the request.
312
+ # Corresponds to the JSON property `updatedTagsCount`
313
+ # @return [Fixnum]
314
+ attr_accessor :updated_tags_count
315
+
316
+ def initialize(**args)
317
+ update!(**args)
318
+ end
319
+
320
+ # Update properties of this object
321
+ def update!(**args)
322
+ @created_tags_count = args[:created_tags_count] if args.key?(:created_tags_count)
323
+ @deleted_tags_count = args[:deleted_tags_count] if args.key?(:deleted_tags_count)
324
+ @updated_tags_count = args[:updated_tags_count] if args.key?(:updated_tags_count)
325
+ end
326
+ end
327
+
271
328
  # Spec for a group of BigQuery tables with name pattern `[prefix]YYYYMMDD`.
272
329
  # Context: https://cloud.google.com/bigquery/docs/partitioned-tables#
273
330
  # partitioning_versus_sharding
@@ -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.25.0"
19
+ GEM_VERSION = "0.26.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.11.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230117"
25
+ REVISION = "20230127"
26
26
  end
27
27
  end
28
28
  end
@@ -64,6 +64,18 @@ module Google
64
64
  include Google::Apis::Core::JsonObjectSupport
65
65
  end
66
66
 
67
+ class GoogleCloudDatacatalogV1ReconcileTagsMetadata
68
+ class Representation < Google::Apis::Core::JsonRepresentation; end
69
+
70
+ include Google::Apis::Core::JsonObjectSupport
71
+ end
72
+
73
+ class GoogleCloudDatacatalogV1ReconcileTagsResponse
74
+ class Representation < Google::Apis::Core::JsonRepresentation; end
75
+
76
+ include Google::Apis::Core::JsonObjectSupport
77
+ end
78
+
67
79
  class GoogleCloudDatacatalogV1beta1BigQueryDateShardedSpec
68
80
  class Representation < Google::Apis::Core::JsonRepresentation; end
69
81
 
@@ -398,6 +410,24 @@ module Google
398
410
  end
399
411
  end
400
412
 
413
+ class GoogleCloudDatacatalogV1ReconcileTagsMetadata
414
+ # @private
415
+ class Representation < Google::Apis::Core::JsonRepresentation
416
+ hash :errors, as: 'errors', class: Google::Apis::DatacatalogV1beta1::Status, decorator: Google::Apis::DatacatalogV1beta1::Status::Representation
417
+
418
+ property :state, as: 'state'
419
+ end
420
+ end
421
+
422
+ class GoogleCloudDatacatalogV1ReconcileTagsResponse
423
+ # @private
424
+ class Representation < Google::Apis::Core::JsonRepresentation
425
+ property :created_tags_count, :numeric_string => true, as: 'createdTagsCount'
426
+ property :deleted_tags_count, :numeric_string => true, as: 'deletedTagsCount'
427
+ property :updated_tags_count, :numeric_string => true, as: 'updatedTagsCount'
428
+ end
429
+ end
430
+
401
431
  class GoogleCloudDatacatalogV1beta1BigQueryDateShardedSpec
402
432
  # @private
403
433
  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.25.0
4
+ version: 0.26.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-01-22 00:00:00.000000000 Z
11
+ date: 2023-02-05 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.25.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1beta1/v0.26.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: []