google-apis-datacatalog_v1beta1 0.25.0 → 0.27.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: fd2fc0ea8c32cbaaadbf67f801a1a88bf7bee26342eba220783b82c68f16e853
4
+ data.tar.gz: 2913e50c3c7e5a9685675d67456f54e4a32204c7dcdfa24a4378bba32cbbd2c4
5
5
  SHA512:
6
- metadata.gz: fff8606146e0f481057864fd0d184474b09a66ce3b0e014b7a56d890a5713cb1361026a2a9dadea104e71a02d39f9db24f516cfe80eb8c55ac14251a7d346208
7
- data.tar.gz: be2131347e8643065edb844bf14513d02ddf84d577c5646cf2523dea1fb4cb8627460f65639af4eb67d03e864c272c8e4b615f6e488ee646d94f5c03e1dc8fbc
6
+ metadata.gz: ee46afe088f5b9a3b295754173320e01156f6eee347c49f382372d93335c0fc52cf5758045aa14b6ecb46c268e3003f73380b63bc0a95f1dceb22e060bc971ac
7
+ data.tar.gz: 4c22a5907c33ffbf005d49d1e406166bf19871901daacd283753e5f1f57b9fc899f506bf7b04664e7dafa0cc70fd13c4637a2fc031ec37f601bb3b47c546e59b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-datacatalog_v1beta1
2
2
 
3
+ ### v0.27.0 (2023-02-12)
4
+
5
+ * Regenerated from discovery document revision 20230207
6
+
7
+ ### v0.26.0 (2023-02-05)
8
+
9
+ * Regenerated from discovery document revision 20230127
10
+
3
11
  ### v0.25.0 (2023-01-22)
4
12
 
5
13
  * 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
+ # Long-running operation metadata message returned by the ReconcileTags.
272
+ class GoogleCloudDatacatalogV1ReconcileTagsMetadata
273
+ include Google::Apis::Core::Hashable
274
+
275
+ # Maps the name of each tagged column (or empty string for a sole entry) to
276
+ # 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
+ # Long-running operation response message returned by 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
@@ -1070,9 +1127,9 @@ module Google
1070
1127
  class GoogleCloudDatacatalogV1beta1SearchCatalogRequestScope
1071
1128
  include Google::Apis::Core::Hashable
1072
1129
 
1073
- # If `true`, include Google Cloud Platform (GCP) public datasets in the search
1074
- # results. Info on GCP public datasets is available at https://cloud.google.com/
1075
- # public-datasets/. By default, GCP public datasets are excluded.
1130
+ # If `true`, include Google Cloud public datasets in the search results. Info on
1131
+ # Google Cloud public datasets is available at https://cloud.google.com/public-
1132
+ # datasets/. By default, Google Cloud public datasets are excluded.
1076
1133
  # Corresponds to the JSON property `includeGcpPublicDatasets`
1077
1134
  # @return [Boolean]
1078
1135
  attr_accessor :include_gcp_public_datasets
@@ -1477,12 +1534,12 @@ module Google
1477
1534
  end
1478
1535
 
1479
1536
  # A tag template defines a tag, which can have one or more typed fields. The
1480
- # template is used to create and attach the tag to GCP resources. [Tag template
1481
- # roles](https://cloud.google.com/iam/docs/understanding-roles#data-catalog-
1482
- # roles) provide permissions to create, edit, and use the template. See, for
1483
- # example, the [TagTemplate User](https://cloud.google.com/data-catalog/docs/how-
1484
- # to/template-user) role, which includes permission to use the tag template to
1485
- # tag resources.
1537
+ # template is used to create and attach the tag to Google Cloud resources. [Tag
1538
+ # template roles](https://cloud.google.com/iam/docs/understanding-roles#data-
1539
+ # catalog-roles) provide permissions to create, edit, and use the template. See,
1540
+ # for example, the [TagTemplate User](https://cloud.google.com/data-catalog/docs/
1541
+ # how-to/template-user) role, which includes permission to use the tag template
1542
+ # to tag resources.
1486
1543
  class GoogleCloudDatacatalogV1beta1TagTemplate
1487
1544
  include Google::Apis::Core::Hashable
1488
1545
 
@@ -1654,7 +1711,7 @@ module Google
1654
1711
  # @return [String]
1655
1712
  attr_accessor :identity
1656
1713
 
1657
- # The GCP service name.
1714
+ # The Google Cloud service name.
1658
1715
  # Corresponds to the JSON property `name`
1659
1716
  # @return [String]
1660
1717
  attr_accessor :name
@@ -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.27.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 = "20230207"
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.27.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-12 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.27.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: []