google-apis-datacatalog_v1beta1 0.29.0 → 0.30.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5355782dadefa15088a68f43d55f49390b4d38c6b5eac614826732de71d2cf45
|
4
|
+
data.tar.gz: 5274a5681180193b747042a2c5fadd3b13bb7b76bc330565472b709ff574ebad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b2492cfe7b6c5c6ca930e17ff98c928b693f5a3337d16d1141fb2bbe2839423e5ff7f4e889ca5ab682bba9c7119018815e2167ef7c380d070642c2295ab5f0b7
|
7
|
+
data.tar.gz: c9fe18b641f77041b9aa3a12e5128957305d3fd58a3c8ff923c0046d0f77c18600130c5df87a353b405965655bf190598931b86fc3dd278c7a4f479e178cc9ff
|
data/CHANGELOG.md
CHANGED
@@ -1447,6 +1447,63 @@ module Google
|
|
1447
1447
|
end
|
1448
1448
|
end
|
1449
1449
|
|
1450
|
+
# Long-running operation metadata message returned by the ReconcileTags.
|
1451
|
+
class GoogleCloudDatacatalogV1ReconcileTagsMetadata
|
1452
|
+
include Google::Apis::Core::Hashable
|
1453
|
+
|
1454
|
+
# Maps the name of each tagged column (or empty string for a sole entry) to
|
1455
|
+
# tagging operation status.
|
1456
|
+
# Corresponds to the JSON property `errors`
|
1457
|
+
# @return [Hash<String,Google::Apis::DatacatalogV1beta1::Status>]
|
1458
|
+
attr_accessor :errors
|
1459
|
+
|
1460
|
+
# State of the reconciliation operation.
|
1461
|
+
# Corresponds to the JSON property `state`
|
1462
|
+
# @return [String]
|
1463
|
+
attr_accessor :state
|
1464
|
+
|
1465
|
+
def initialize(**args)
|
1466
|
+
update!(**args)
|
1467
|
+
end
|
1468
|
+
|
1469
|
+
# Update properties of this object
|
1470
|
+
def update!(**args)
|
1471
|
+
@errors = args[:errors] if args.key?(:errors)
|
1472
|
+
@state = args[:state] if args.key?(:state)
|
1473
|
+
end
|
1474
|
+
end
|
1475
|
+
|
1476
|
+
# Long-running operation response message returned by ReconcileTags.
|
1477
|
+
class GoogleCloudDatacatalogV1ReconcileTagsResponse
|
1478
|
+
include Google::Apis::Core::Hashable
|
1479
|
+
|
1480
|
+
# Number of tags created in the request.
|
1481
|
+
# Corresponds to the JSON property `createdTagsCount`
|
1482
|
+
# @return [Fixnum]
|
1483
|
+
attr_accessor :created_tags_count
|
1484
|
+
|
1485
|
+
# Number of tags deleted in the request.
|
1486
|
+
# Corresponds to the JSON property `deletedTagsCount`
|
1487
|
+
# @return [Fixnum]
|
1488
|
+
attr_accessor :deleted_tags_count
|
1489
|
+
|
1490
|
+
# Number of tags updated in the request.
|
1491
|
+
# Corresponds to the JSON property `updatedTagsCount`
|
1492
|
+
# @return [Fixnum]
|
1493
|
+
attr_accessor :updated_tags_count
|
1494
|
+
|
1495
|
+
def initialize(**args)
|
1496
|
+
update!(**args)
|
1497
|
+
end
|
1498
|
+
|
1499
|
+
# Update properties of this object
|
1500
|
+
def update!(**args)
|
1501
|
+
@created_tags_count = args[:created_tags_count] if args.key?(:created_tags_count)
|
1502
|
+
@deleted_tags_count = args[:deleted_tags_count] if args.key?(:deleted_tags_count)
|
1503
|
+
@updated_tags_count = args[:updated_tags_count] if args.key?(:updated_tags_count)
|
1504
|
+
end
|
1505
|
+
end
|
1506
|
+
|
1450
1507
|
# Specification that applies to a routine. Valid only for entries with the `
|
1451
1508
|
# ROUTINE` type.
|
1452
1509
|
class GoogleCloudDatacatalogV1RoutineSpec
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.30.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 = "
|
25
|
+
REVISION = "20230313"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -268,6 +268,18 @@ module Google
|
|
268
268
|
include Google::Apis::Core::JsonObjectSupport
|
269
269
|
end
|
270
270
|
|
271
|
+
class GoogleCloudDatacatalogV1ReconcileTagsMetadata
|
272
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
|
+
|
274
|
+
include Google::Apis::Core::JsonObjectSupport
|
275
|
+
end
|
276
|
+
|
277
|
+
class GoogleCloudDatacatalogV1ReconcileTagsResponse
|
278
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
|
+
|
280
|
+
include Google::Apis::Core::JsonObjectSupport
|
281
|
+
end
|
282
|
+
|
271
283
|
class GoogleCloudDatacatalogV1RoutineSpec
|
272
284
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
285
|
|
@@ -1035,6 +1047,24 @@ module Google
|
|
1035
1047
|
end
|
1036
1048
|
end
|
1037
1049
|
|
1050
|
+
class GoogleCloudDatacatalogV1ReconcileTagsMetadata
|
1051
|
+
# @private
|
1052
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1053
|
+
hash :errors, as: 'errors', class: Google::Apis::DatacatalogV1beta1::Status, decorator: Google::Apis::DatacatalogV1beta1::Status::Representation
|
1054
|
+
|
1055
|
+
property :state, as: 'state'
|
1056
|
+
end
|
1057
|
+
end
|
1058
|
+
|
1059
|
+
class GoogleCloudDatacatalogV1ReconcileTagsResponse
|
1060
|
+
# @private
|
1061
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1062
|
+
property :created_tags_count, :numeric_string => true, as: 'createdTagsCount'
|
1063
|
+
property :deleted_tags_count, :numeric_string => true, as: 'deletedTagsCount'
|
1064
|
+
property :updated_tags_count, :numeric_string => true, as: 'updatedTagsCount'
|
1065
|
+
end
|
1066
|
+
end
|
1067
|
+
|
1038
1068
|
class GoogleCloudDatacatalogV1RoutineSpec
|
1039
1069
|
# @private
|
1040
1070
|
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.
|
4
|
+
version: 0.30.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-03-
|
11
|
+
date: 2023-03-19 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1beta1/v0.30.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: []
|