google-apis-datacatalog_v1beta1 0.41.0 → 0.43.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: 619d8c5d22c6133e5b8e331930c1a97972d6b1a13ec07ea2c333cff5e3eb1ee5
4
- data.tar.gz: 924905aeed4f4e27eb6b657438e29cbd9264e91d37e983840ef9a8a6de768d62
3
+ metadata.gz: 235b55368da50a721af329d717e810087e63a884bd3e4799ee34804e97afb3e7
4
+ data.tar.gz: 5be050c33db4db9d176a6293cf005b0af75c873396aaaf6a6ea58c2b535877e0
5
5
  SHA512:
6
- metadata.gz: de072c2fd7d750ab5347410e1be5a48241cb1c335b895854141fcc16954df38a912d0b762d1219e62de7cca33efbebcaa44f13365a2267294a63073f6746d209
7
- data.tar.gz: 54c067a9420908c1cc412c2a2f9c7298f51895b4a1655279c461772ad12dbe3bcca795b9f159bdd2cedaf3945d67b1ffbfcb574137ed41deeda8cbf4c8839934
6
+ metadata.gz: f757186966f14d24818c2faefd72427ad95b7a2f64238b086fe13a0bdbc00305fdaf706f0ab1773f4c99ec9ef32779b104f79c0de29986a995d1189e68c159ea
7
+ data.tar.gz: 630d433c680371c16ab0734da134c3125ba7a5ea472647846e5167c988921ac5297315078610e8aef794fbe3bf39914d65846b066aa43ab000379691828b5f97
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-datacatalog_v1beta1
2
2
 
3
+ ### v0.43.0 (2024-02-23)
4
+
5
+ * Regenerated from discovery document revision 20240220
6
+
7
+ ### v0.42.0 (2024-02-18)
8
+
9
+ * Regenerated from discovery document revision 20240206
10
+
3
11
  ### v0.41.0 (2024-01-28)
4
12
 
5
13
  * Regenerated from discovery document revision 20240118
data/OVERVIEW.md CHANGED
@@ -83,9 +83,9 @@ The [product documentation](https://cloud.google.com/data-catalog/docs/) may pro
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.5+.
86
+ This library is supported on Ruby 2.7+.
87
87
 
88
- Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Currently, this means Ruby 2.5 and later. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
88
+ Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
90
90
  ## License
91
91
 
@@ -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
@@ -1033,6 +1058,11 @@ module Google
1033
1058
  # @return [String]
1034
1059
  attr_accessor :display_name
1035
1060
 
1061
+ # Detail description of the source information of a Vertex Feature Online Store.
1062
+ # Corresponds to the JSON property `featureOnlineStoreSpec`
1063
+ # @return [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1FeatureOnlineStoreSpec]
1064
+ attr_accessor :feature_online_store_spec
1065
+
1036
1066
  # Specification that applies to a fileset. Valid only for entries with the '
1037
1067
  # FILESET' type.
1038
1068
  # Corresponds to the JSON property `filesetSpec`
@@ -1180,6 +1210,7 @@ module Google
1180
1210
  @dataset_spec = args[:dataset_spec] if args.key?(:dataset_spec)
1181
1211
  @description = args[:description] if args.key?(:description)
1182
1212
  @display_name = args[:display_name] if args.key?(:display_name)
1213
+ @feature_online_store_spec = args[:feature_online_store_spec] if args.key?(:feature_online_store_spec)
1183
1214
  @fileset_spec = args[:fileset_spec] if args.key?(:fileset_spec)
1184
1215
  @fully_qualified_name = args[:fully_qualified_name] if args.key?(:fully_qualified_name)
1185
1216
  @gcs_fileset_spec = args[:gcs_fileset_spec] if args.key?(:gcs_fileset_spec)
@@ -1224,6 +1255,25 @@ module Google
1224
1255
  end
1225
1256
  end
1226
1257
 
1258
+ # Detail description of the source information of a Vertex Feature Online Store.
1259
+ class GoogleCloudDatacatalogV1FeatureOnlineStoreSpec
1260
+ include Google::Apis::Core::Hashable
1261
+
1262
+ # Output only. Type of underelaying storage for the FeatureOnlineStore.
1263
+ # Corresponds to the JSON property `storageType`
1264
+ # @return [String]
1265
+ attr_accessor :storage_type
1266
+
1267
+ def initialize(**args)
1268
+ update!(**args)
1269
+ end
1270
+
1271
+ # Update properties of this object
1272
+ def update!(**args)
1273
+ @storage_type = args[:storage_type] if args.key?(:storage_type)
1274
+ end
1275
+ end
1276
+
1227
1277
  # Specification that applies to a fileset. Valid only for entries with the '
1228
1278
  # FILESET' type.
1229
1279
  class GoogleCloudDatacatalogV1FilesetSpec
@@ -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.41.0"
19
+ GEM_VERSION = "0.43.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 = "20240118"
25
+ REVISION = "20240220"
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
 
@@ -208,6 +214,12 @@ module Google
208
214
  include Google::Apis::Core::JsonObjectSupport
209
215
  end
210
216
 
217
+ class GoogleCloudDatacatalogV1FeatureOnlineStoreSpec
218
+ class Representation < Google::Apis::Core::JsonRepresentation; end
219
+
220
+ include Google::Apis::Core::JsonObjectSupport
221
+ end
222
+
211
223
  class GoogleCloudDatacatalogV1FilesetSpec
212
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
213
225
 
@@ -829,12 +841,21 @@ module Google
829
841
 
830
842
  property :mode, as: 'mode'
831
843
  property :ordinal_position, as: 'ordinalPosition'
844
+ property :range_element_type, as: 'rangeElementType', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1ColumnSchemaFieldElementType, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1ColumnSchemaFieldElementType::Representation
845
+
832
846
  collection :subcolumns, as: 'subcolumns', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1ColumnSchema, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1ColumnSchema::Representation
833
847
 
834
848
  property :type, as: 'type'
835
849
  end
836
850
  end
837
851
 
852
+ class GoogleCloudDatacatalogV1ColumnSchemaFieldElementType
853
+ # @private
854
+ class Representation < Google::Apis::Core::JsonRepresentation
855
+ property :type, as: 'type'
856
+ end
857
+ end
858
+
838
859
  class GoogleCloudDatacatalogV1ColumnSchemaLookerColumnSpec
839
860
  # @private
840
861
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -981,6 +1002,8 @@ module Google
981
1002
 
982
1003
  property :description, as: 'description'
983
1004
  property :display_name, as: 'displayName'
1005
+ property :feature_online_store_spec, as: 'featureOnlineStoreSpec', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1FeatureOnlineStoreSpec, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1FeatureOnlineStoreSpec::Representation
1006
+
984
1007
  property :fileset_spec, as: 'filesetSpec', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1FilesetSpec, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1FilesetSpec::Representation
985
1008
 
986
1009
  property :fully_qualified_name, as: 'fullyQualifiedName'
@@ -1021,6 +1044,13 @@ module Google
1021
1044
  end
1022
1045
  end
1023
1046
 
1047
+ class GoogleCloudDatacatalogV1FeatureOnlineStoreSpec
1048
+ # @private
1049
+ class Representation < Google::Apis::Core::JsonRepresentation
1050
+ property :storage_type, as: 'storageType'
1051
+ end
1052
+ end
1053
+
1024
1054
  class GoogleCloudDatacatalogV1FilesetSpec
1025
1055
  # @private
1026
1056
  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.41.0
4
+ version: 0.43.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-01-28 00:00:00.000000000 Z
11
+ date: 2024-02-25 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.12.0
19
+ version: 0.14.0
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.12.0
29
+ version: 0.14.0
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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1beta1/v0.41.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1beta1/v0.43.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: []
@@ -68,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
68
68
  requirements:
69
69
  - - ">="
70
70
  - !ruby/object:Gem::Version
71
- version: '2.5'
71
+ version: '2.7'
72
72
  required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  requirements:
74
74
  - - ">="
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.3
78
+ rubygems_version: 3.5.6
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Google Cloud Data Catalog API V1beta1