google-apis-datacatalog_v1 0.25.0 → 0.27.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ea443e95e1105812f7d3f00419261af4e3e8227b84a76f81c58bc07f415280cc
|
4
|
+
data.tar.gz: c71e0d06ed8b0234e972e65dd1b7d03d22d12a73c60f954bdf048d3523d63e12
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4a632e3a24f3d546c5d8761b92c6ec9ad9f4a0c02eb76af91d7b52afeff6ddfd85ad1da6908c7fc128cebb131713b8c26fc383a6dfc40d28d573bdc4674d8317
|
7
|
+
data.tar.gz: d590fe2a9bfdd473a0e7e81ba478d3c6c4725a3ab774a73ee9dce945027feb6e02d53748ba96abe484211f24348b421bca7b48d6732938c5c0600b7b83a82604
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-datacatalog_v1
|
2
2
|
|
3
|
+
### v0.27.0 (2022-11-04)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20221025
|
6
|
+
|
7
|
+
### v0.26.0 (2022-10-30)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20221017
|
10
|
+
* Regenerated using generator version 0.11.0
|
11
|
+
|
3
12
|
### v0.25.0 (2022-09-22)
|
4
13
|
|
5
14
|
* Regenerated using generator version 0.10.0
|
@@ -414,10 +414,11 @@ module Google
|
|
414
414
|
# @return [String]
|
415
415
|
attr_accessor :description
|
416
416
|
|
417
|
-
#
|
418
|
-
#
|
419
|
-
#
|
420
|
-
|
417
|
+
# Optional. Garbage collection policy for the column or column family. Applies
|
418
|
+
# to systems like Cloud Bigtable.
|
419
|
+
# Corresponds to the JSON property `gcRule`
|
420
|
+
# @return [String]
|
421
|
+
attr_accessor :gc_rule
|
421
422
|
|
422
423
|
# Optional. A column's mode indicates whether values in this column are required,
|
423
424
|
# nullable, or repeated. Only `NULLABLE`, `REQUIRED`, and `REPEATED` values are
|
@@ -445,32 +446,13 @@ module Google
|
|
445
446
|
def update!(**args)
|
446
447
|
@column = args[:column] if args.key?(:column)
|
447
448
|
@description = args[:description] if args.key?(:description)
|
448
|
-
@
|
449
|
+
@gc_rule = args[:gc_rule] if args.key?(:gc_rule)
|
449
450
|
@mode = args[:mode] if args.key?(:mode)
|
450
451
|
@subcolumns = args[:subcolumns] if args.key?(:subcolumns)
|
451
452
|
@type = args[:type] if args.key?(:type)
|
452
453
|
end
|
453
454
|
end
|
454
455
|
|
455
|
-
# Column info specific to Looker System.
|
456
|
-
class GoogleCloudDatacatalogV1ColumnSchemaLookerColumnSpec
|
457
|
-
include Google::Apis::Core::Hashable
|
458
|
-
|
459
|
-
# Looker specific column type of this column.
|
460
|
-
# Corresponds to the JSON property `type`
|
461
|
-
# @return [String]
|
462
|
-
attr_accessor :type
|
463
|
-
|
464
|
-
def initialize(**args)
|
465
|
-
update!(**args)
|
466
|
-
end
|
467
|
-
|
468
|
-
# Update properties of this object
|
469
|
-
def update!(**args)
|
470
|
-
@type = args[:type] if args.key?(:type)
|
471
|
-
end
|
472
|
-
end
|
473
|
-
|
474
456
|
# Contact people for the entry.
|
475
457
|
class GoogleCloudDatacatalogV1Contacts
|
476
458
|
include Google::Apis::Core::Hashable
|
@@ -2632,11 +2614,6 @@ module Google
|
|
2632
2614
|
class GoogleCloudDatacatalogV1UsageSignal
|
2633
2615
|
include Google::Apis::Core::Hashable
|
2634
2616
|
|
2635
|
-
# Favorite count in the source system.
|
2636
|
-
# Corresponds to the JSON property `favoriteCount`
|
2637
|
-
# @return [Fixnum]
|
2638
|
-
attr_accessor :favorite_count
|
2639
|
-
|
2640
2617
|
# The end timestamp of the duration of usage statistics.
|
2641
2618
|
# Corresponds to the JSON property `updateTime`
|
2642
2619
|
# @return [String]
|
@@ -2654,7 +2631,6 @@ module Google
|
|
2654
2631
|
|
2655
2632
|
# Update properties of this object
|
2656
2633
|
def update!(**args)
|
2657
|
-
@favorite_count = args[:favorite_count] if args.key?(:favorite_count)
|
2658
2634
|
@update_time = args[:update_time] if args.key?(:update_time)
|
2659
2635
|
@usage_within_time_range = args[:usage_within_time_range] if args.key?(:usage_within_time_range)
|
2660
2636
|
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.
|
19
|
+
GEM_VERSION = "0.27.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221025"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -94,12 +94,6 @@ module Google
|
|
94
94
|
include Google::Apis::Core::JsonObjectSupport
|
95
95
|
end
|
96
96
|
|
97
|
-
class GoogleCloudDatacatalogV1ColumnSchemaLookerColumnSpec
|
98
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
|
-
|
100
|
-
include Google::Apis::Core::JsonObjectSupport
|
101
|
-
end
|
102
|
-
|
103
97
|
class GoogleCloudDatacatalogV1Contacts
|
104
98
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
99
|
|
@@ -629,8 +623,7 @@ module Google
|
|
629
623
|
class Representation < Google::Apis::Core::JsonRepresentation
|
630
624
|
property :column, as: 'column'
|
631
625
|
property :description, as: 'description'
|
632
|
-
property :
|
633
|
-
|
626
|
+
property :gc_rule, as: 'gcRule'
|
634
627
|
property :mode, as: 'mode'
|
635
628
|
collection :subcolumns, as: 'subcolumns', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ColumnSchema, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ColumnSchema::Representation
|
636
629
|
|
@@ -638,13 +631,6 @@ module Google
|
|
638
631
|
end
|
639
632
|
end
|
640
633
|
|
641
|
-
class GoogleCloudDatacatalogV1ColumnSchemaLookerColumnSpec
|
642
|
-
# @private
|
643
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
644
|
-
property :type, as: 'type'
|
645
|
-
end
|
646
|
-
end
|
647
|
-
|
648
634
|
class GoogleCloudDatacatalogV1Contacts
|
649
635
|
# @private
|
650
636
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1265,7 +1251,6 @@ module Google
|
|
1265
1251
|
class GoogleCloudDatacatalogV1UsageSignal
|
1266
1252
|
# @private
|
1267
1253
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1268
|
-
property :favorite_count, :numeric_string => true, as: 'favoriteCount'
|
1269
1254
|
property :update_time, as: 'updateTime'
|
1270
1255
|
hash :usage_within_time_range, as: 'usageWithinTimeRange', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1UsageStats, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1UsageStats::Representation
|
1271
1256
|
|
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.
|
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: 2022-
|
11
|
+
date: 2022-11-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.9.
|
19
|
+
version: 0.9.1
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.9.
|
29
|
+
version: 0.9.1
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1/v0.27.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: []
|