google-apis-datacatalog_v1beta1 0.41.0 → 0.42.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: 7cdf939fe3628ec2fd14c3abb07b7eed04ca6d59e26634d6fb7f874445906b98
|
4
|
+
data.tar.gz: 99e2ce2973eb80ba004d1d47cbc56962e80d57e6b90f18ccb5a98436784bb6d0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 30fe516c8eb13cb5feaa36d5ab0c10d69710aff86ad4b8d427a552c99d5dcd5c34c9715cb5b885801b025a758b1325611656abf00d2e079935197ed51a6cbea8
|
7
|
+
data.tar.gz: 11e805217f19bc4e2ff01042f0124be32b4cdf4e4e0a0e1a99ae85bc23402f5404f18b650716c1e29022cb187f31e5962c95a99a277d3666c5a9da8811329001
|
data/CHANGELOG.md
CHANGED
@@ -550,6 +550,11 @@ module Google
|
|
550
550
|
# @return [Fixnum]
|
551
551
|
attr_accessor :ordinal_position
|
552
552
|
|
553
|
+
# Represents the type of a field element.
|
554
|
+
# Corresponds to the JSON property `rangeElementType`
|
555
|
+
# @return [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1ColumnSchemaFieldElementType]
|
556
|
+
attr_accessor :range_element_type
|
557
|
+
|
553
558
|
# Optional. Schema of sub-columns. A column can have zero or more sub-columns.
|
554
559
|
# Corresponds to the JSON property `subcolumns`
|
555
560
|
# @return [Array<Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1ColumnSchema>]
|
@@ -575,11 +580,31 @@ module Google
|
|
575
580
|
@looker_column_spec = args[:looker_column_spec] if args.key?(:looker_column_spec)
|
576
581
|
@mode = args[:mode] if args.key?(:mode)
|
577
582
|
@ordinal_position = args[:ordinal_position] if args.key?(:ordinal_position)
|
583
|
+
@range_element_type = args[:range_element_type] if args.key?(:range_element_type)
|
578
584
|
@subcolumns = args[:subcolumns] if args.key?(:subcolumns)
|
579
585
|
@type = args[:type] if args.key?(:type)
|
580
586
|
end
|
581
587
|
end
|
582
588
|
|
589
|
+
# Represents the type of a field element.
|
590
|
+
class GoogleCloudDatacatalogV1ColumnSchemaFieldElementType
|
591
|
+
include Google::Apis::Core::Hashable
|
592
|
+
|
593
|
+
# Required. The type of a field element. See ColumnSchema.type.
|
594
|
+
# Corresponds to the JSON property `type`
|
595
|
+
# @return [String]
|
596
|
+
attr_accessor :type
|
597
|
+
|
598
|
+
def initialize(**args)
|
599
|
+
update!(**args)
|
600
|
+
end
|
601
|
+
|
602
|
+
# Update properties of this object
|
603
|
+
def update!(**args)
|
604
|
+
@type = args[:type] if args.key?(:type)
|
605
|
+
end
|
606
|
+
end
|
607
|
+
|
583
608
|
# Column info specific to Looker System.
|
584
609
|
class GoogleCloudDatacatalogV1ColumnSchemaLookerColumnSpec
|
585
610
|
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.
|
19
|
+
GEM_VERSION = "0.42.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.13.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240206"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -112,6 +112,12 @@ module Google
|
|
112
112
|
include Google::Apis::Core::JsonObjectSupport
|
113
113
|
end
|
114
114
|
|
115
|
+
class GoogleCloudDatacatalogV1ColumnSchemaFieldElementType
|
116
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
117
|
+
|
118
|
+
include Google::Apis::Core::JsonObjectSupport
|
119
|
+
end
|
120
|
+
|
115
121
|
class GoogleCloudDatacatalogV1ColumnSchemaLookerColumnSpec
|
116
122
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
117
123
|
|
@@ -829,12 +835,21 @@ module Google
|
|
829
835
|
|
830
836
|
property :mode, as: 'mode'
|
831
837
|
property :ordinal_position, as: 'ordinalPosition'
|
838
|
+
property :range_element_type, as: 'rangeElementType', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1ColumnSchemaFieldElementType, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1ColumnSchemaFieldElementType::Representation
|
839
|
+
|
832
840
|
collection :subcolumns, as: 'subcolumns', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1ColumnSchema, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1ColumnSchema::Representation
|
833
841
|
|
834
842
|
property :type, as: 'type'
|
835
843
|
end
|
836
844
|
end
|
837
845
|
|
846
|
+
class GoogleCloudDatacatalogV1ColumnSchemaFieldElementType
|
847
|
+
# @private
|
848
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
849
|
+
property :type, as: 'type'
|
850
|
+
end
|
851
|
+
end
|
852
|
+
|
838
853
|
class GoogleCloudDatacatalogV1ColumnSchemaLookerColumnSpec
|
839
854
|
# @private
|
840
855
|
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.42.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: 2024-
|
11
|
+
date: 2024-02-18 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.42.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: []
|