google-apis-datacatalog_v1beta1 0.42.0 → 0.44.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 +4 -4
- data/CHANGELOG.md +9 -0
- data/OVERVIEW.md +2 -2
- data/lib/google/apis/datacatalog_v1beta1/classes.rb +47 -22
- data/lib/google/apis/datacatalog_v1beta1/gem_version.rb +3 -3
- data/lib/google/apis/datacatalog_v1beta1/representations.rb +15 -0
- data/lib/google/apis/datacatalog_v1beta1/service.rb +18 -18
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1631632d7733e2eed42a3f9db2f2e268714103b556305424b3ae07b8e532618c
|
4
|
+
data.tar.gz: eb801b927bec7a86b37ab42402e2be2bca90ae37390b98ac802c68b8e81b9c48
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a5eeb1e1accc372a959acb644c022aa3aed37845b5dfd1b1f43a9c1c8165e586dbc929cdec3301ba84b7b4b1dfa81dceebbae975cb81632688f761f4e1dd152a
|
7
|
+
data.tar.gz: 82b543b3378999ca94804a6ebf14468bc3cf1d7fd017f09d8e8ee0ef8403c5085f0d7b837f01497387fac8ceb7bf9c9624c0b6e52a05a88a857b2add6474b032
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-datacatalog_v1beta1
|
2
2
|
|
3
|
+
### v0.44.0 (2024-03-17)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240311
|
6
|
+
* Regenerated using generator version 0.14.0
|
7
|
+
|
8
|
+
### v0.43.0 (2024-02-23)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20240220
|
11
|
+
|
3
12
|
### v0.42.0 (2024-02-18)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240206
|
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.
|
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.
|
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
|
|
@@ -1058,6 +1058,11 @@ module Google
|
|
1058
1058
|
# @return [String]
|
1059
1059
|
attr_accessor :display_name
|
1060
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
|
+
|
1061
1066
|
# Specification that applies to a fileset. Valid only for entries with the '
|
1062
1067
|
# FILESET' type.
|
1063
1068
|
# Corresponds to the JSON property `filesetSpec`
|
@@ -1116,9 +1121,9 @@ module Google
|
|
1116
1121
|
# @return [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1ModelSpec]
|
1117
1122
|
attr_accessor :model_spec
|
1118
1123
|
|
1119
|
-
# Output only. The resource name of an entry in URL format. Note:
|
1120
|
-
# itself and its child resources might not be stored in the location
|
1121
|
-
# in its name.
|
1124
|
+
# Output only. Identifier. The resource name of an entry in URL format. Note:
|
1125
|
+
# The entry itself and its child resources might not be stored in the location
|
1126
|
+
# specified in its name.
|
1122
1127
|
# Corresponds to the JSON property `name`
|
1123
1128
|
# @return [String]
|
1124
1129
|
attr_accessor :name
|
@@ -1205,6 +1210,7 @@ module Google
|
|
1205
1210
|
@dataset_spec = args[:dataset_spec] if args.key?(:dataset_spec)
|
1206
1211
|
@description = args[:description] if args.key?(:description)
|
1207
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)
|
1208
1214
|
@fileset_spec = args[:fileset_spec] if args.key?(:fileset_spec)
|
1209
1215
|
@fully_qualified_name = args[:fully_qualified_name] if args.key?(:fully_qualified_name)
|
1210
1216
|
@gcs_fileset_spec = args[:gcs_fileset_spec] if args.key?(:gcs_fileset_spec)
|
@@ -1249,6 +1255,25 @@ module Google
|
|
1249
1255
|
end
|
1250
1256
|
end
|
1251
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
|
+
|
1252
1277
|
# Specification that applies to a fileset. Valid only for entries with the '
|
1253
1278
|
# FILESET' type.
|
1254
1279
|
class GoogleCloudDatacatalogV1FilesetSpec
|
@@ -1971,9 +1996,9 @@ module Google
|
|
1971
1996
|
# @return [Hash<String,Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1TagField>]
|
1972
1997
|
attr_accessor :fields
|
1973
1998
|
|
1974
|
-
# The resource name of the tag in URL format where tag ID is a
|
1975
|
-
# identifier. Note: The tag itself might not be stored in the
|
1976
|
-
# in its name.
|
1999
|
+
# Identifier. The resource name of the tag in URL format where tag ID is a
|
2000
|
+
# system-generated identifier. Note: The tag itself might not be stored in the
|
2001
|
+
# location specified in its name.
|
1977
2002
|
# Corresponds to the JSON property `name`
|
1978
2003
|
# @return [String]
|
1979
2004
|
attr_accessor :name
|
@@ -2499,8 +2524,8 @@ module Google
|
|
2499
2524
|
# @return [String]
|
2500
2525
|
attr_accessor :linked_resource
|
2501
2526
|
|
2502
|
-
# Output only. The Data Catalog resource name of the entry in URL
|
2503
|
-
# Example: * projects/`project_id`/locations/`location`/entryGroups/`
|
2527
|
+
# Output only. Identifier. The Data Catalog resource name of the entry in URL
|
2528
|
+
# format. Example: * projects/`project_id`/locations/`location`/entryGroups/`
|
2504
2529
|
# entry_group_id`/entries/`entry_id` Note that this Entry and its child
|
2505
2530
|
# resources may not actually be stored in the location in this name.
|
2506
2531
|
# Corresponds to the JSON property `name`
|
@@ -2592,10 +2617,10 @@ module Google
|
|
2592
2617
|
# @return [String]
|
2593
2618
|
attr_accessor :display_name
|
2594
2619
|
|
2595
|
-
# The resource name of the entry group in URL format. Example: *
|
2596
|
-
# project_id`/locations/`location`/entryGroups/`entry_group_id` Note
|
2597
|
-
# EntryGroup and its child resources may not actually be stored in the
|
2598
|
-
# in this name.
|
2620
|
+
# Identifier. The resource name of the entry group in URL format. Example: *
|
2621
|
+
# projects/`project_id`/locations/`location`/entryGroups/`entry_group_id` Note
|
2622
|
+
# that this EntryGroup and its child resources may not actually be stored in the
|
2623
|
+
# location in this name.
|
2599
2624
|
# Corresponds to the JSON property `name`
|
2600
2625
|
# @return [String]
|
2601
2626
|
attr_accessor :name
|
@@ -3431,10 +3456,10 @@ module Google
|
|
3431
3456
|
# @return [Hash<String,Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1TagField>]
|
3432
3457
|
attr_accessor :fields
|
3433
3458
|
|
3434
|
-
# The resource name of the tag in URL format. Example: * projects/`
|
3435
|
-
# locations/`location`/entrygroups/`entry_group_id`/entries/`
|
3436
|
-
# tag_id` where `tag_id` is a system-generated identifier. Note
|
3437
|
-
# may not actually be stored in the location in this name.
|
3459
|
+
# Identifier. The resource name of the tag in URL format. Example: * projects/`
|
3460
|
+
# project_id`/locations/`location`/entrygroups/`entry_group_id`/entries/`
|
3461
|
+
# entry_id`/tags/`tag_id` where `tag_id` is a system-generated identifier. Note
|
3462
|
+
# that this Tag may not actually be stored in the location in this name.
|
3438
3463
|
# Corresponds to the JSON property `name`
|
3439
3464
|
# @return [String]
|
3440
3465
|
attr_accessor :name
|
@@ -3569,10 +3594,10 @@ module Google
|
|
3569
3594
|
# @return [Hash<String,Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1TagTemplateField>]
|
3570
3595
|
attr_accessor :fields
|
3571
3596
|
|
3572
|
-
# The resource name of the tag template in URL format. Example: *
|
3573
|
-
# project_id`/locations/`location`/tagTemplates/`tag_template_id` Note
|
3574
|
-
# TagTemplate and its child resources may not actually be stored in
|
3575
|
-
# in this name.
|
3597
|
+
# Identifier. The resource name of the tag template in URL format. Example: *
|
3598
|
+
# projects/`project_id`/locations/`location`/tagTemplates/`tag_template_id` Note
|
3599
|
+
# that this TagTemplate and its child resources may not actually be stored in
|
3600
|
+
# the location in this name.
|
3576
3601
|
# Corresponds to the JSON property `name`
|
3577
3602
|
# @return [String]
|
3578
3603
|
attr_accessor :name
|
@@ -3609,8 +3634,8 @@ module Google
|
|
3609
3634
|
attr_accessor :is_required
|
3610
3635
|
alias_method :is_required?, :is_required
|
3611
3636
|
|
3612
|
-
# Output only. The resource name of the tag template field in URL
|
3613
|
-
# Example: * projects/`project_id`/locations/`location`/tagTemplates/`
|
3637
|
+
# Output only. Identifier. The resource name of the tag template field in URL
|
3638
|
+
# format. Example: * projects/`project_id`/locations/`location`/tagTemplates/`
|
3614
3639
|
# tag_template`/fields/`field` Note that this TagTemplateField may not actually
|
3615
3640
|
# be stored in the location in this name.
|
3616
3641
|
# Corresponds to the JSON property `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.
|
19
|
+
GEM_VERSION = "0.44.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240311"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -214,6 +214,12 @@ module Google
|
|
214
214
|
include Google::Apis::Core::JsonObjectSupport
|
215
215
|
end
|
216
216
|
|
217
|
+
class GoogleCloudDatacatalogV1FeatureOnlineStoreSpec
|
218
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
|
+
|
220
|
+
include Google::Apis::Core::JsonObjectSupport
|
221
|
+
end
|
222
|
+
|
217
223
|
class GoogleCloudDatacatalogV1FilesetSpec
|
218
224
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
225
|
|
@@ -996,6 +1002,8 @@ module Google
|
|
996
1002
|
|
997
1003
|
property :description, as: 'description'
|
998
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
|
+
|
999
1007
|
property :fileset_spec, as: 'filesetSpec', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1FilesetSpec, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1FilesetSpec::Representation
|
1000
1008
|
|
1001
1009
|
property :fully_qualified_name, as: 'fullyQualifiedName'
|
@@ -1036,6 +1044,13 @@ module Google
|
|
1036
1044
|
end
|
1037
1045
|
end
|
1038
1046
|
|
1047
|
+
class GoogleCloudDatacatalogV1FeatureOnlineStoreSpec
|
1048
|
+
# @private
|
1049
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1050
|
+
property :storage_type, as: 'storageType'
|
1051
|
+
end
|
1052
|
+
end
|
1053
|
+
|
1039
1054
|
class GoogleCloudDatacatalogV1FilesetSpec
|
1040
1055
|
# @private
|
1041
1056
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -336,10 +336,10 @@ module Google
|
|
336
336
|
# Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/
|
337
337
|
# resource-project) for more information).
|
338
338
|
# @param [String] name
|
339
|
-
# The resource name of the entry group in URL format. Example: *
|
340
|
-
# project_id`/locations/`location`/entryGroups/`entry_group_id` Note
|
341
|
-
# EntryGroup and its child resources may not actually be stored in the
|
342
|
-
# in this name.
|
339
|
+
# Identifier. The resource name of the entry group in URL format. Example: *
|
340
|
+
# projects/`project_id`/locations/`location`/entryGroups/`entry_group_id` Note
|
341
|
+
# that this EntryGroup and its child resources may not actually be stored in the
|
342
|
+
# location in this name.
|
343
343
|
# @param [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1EntryGroup] google_cloud_datacatalog_v1beta1_entry_group_object
|
344
344
|
# @param [String] update_mask
|
345
345
|
# Names of fields whose values to overwrite on an entry group. If this parameter
|
@@ -658,8 +658,8 @@ module Google
|
|
658
658
|
# Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project)
|
659
659
|
# for more information).
|
660
660
|
# @param [String] name
|
661
|
-
# Output only. The Data Catalog resource name of the entry in URL
|
662
|
-
# Example: * projects/`project_id`/locations/`location`/entryGroups/`
|
661
|
+
# Output only. Identifier. The Data Catalog resource name of the entry in URL
|
662
|
+
# format. Example: * projects/`project_id`/locations/`location`/entryGroups/`
|
663
663
|
# entry_group_id`/entries/`entry_id` Note that this Entry and its child
|
664
664
|
# resources may not actually be stored in the location in this name.
|
665
665
|
# @param [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1Entry] google_cloud_datacatalog_v1beta1_entry_object
|
@@ -858,10 +858,10 @@ module Google
|
|
858
858
|
|
859
859
|
# Updates an existing tag.
|
860
860
|
# @param [String] name
|
861
|
-
# The resource name of the tag in URL format. Example: * projects/`
|
862
|
-
# locations/`location`/entrygroups/`entry_group_id`/entries/`
|
863
|
-
# tag_id` where `tag_id` is a system-generated identifier. Note
|
864
|
-
# may not actually be stored in the location in this name.
|
861
|
+
# Identifier. The resource name of the tag in URL format. Example: * projects/`
|
862
|
+
# project_id`/locations/`location`/entrygroups/`entry_group_id`/entries/`
|
863
|
+
# entry_id`/tags/`tag_id` where `tag_id` is a system-generated identifier. Note
|
864
|
+
# that this Tag may not actually be stored in the location in this name.
|
865
865
|
# @param [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1Tag] google_cloud_datacatalog_v1beta1_tag_object
|
866
866
|
# @param [String] update_mask
|
867
867
|
# Note: Currently, this parameter can only take `"fields"` as value. Names of
|
@@ -1014,10 +1014,10 @@ module Google
|
|
1014
1014
|
|
1015
1015
|
# Updates an existing tag.
|
1016
1016
|
# @param [String] name
|
1017
|
-
# The resource name of the tag in URL format. Example: * projects/`
|
1018
|
-
# locations/`location`/entrygroups/`entry_group_id`/entries/`
|
1019
|
-
# tag_id` where `tag_id` is a system-generated identifier. Note
|
1020
|
-
# may not actually be stored in the location in this name.
|
1017
|
+
# Identifier. The resource name of the tag in URL format. Example: * projects/`
|
1018
|
+
# project_id`/locations/`location`/entrygroups/`entry_group_id`/entries/`
|
1019
|
+
# entry_id`/tags/`tag_id` where `tag_id` is a system-generated identifier. Note
|
1020
|
+
# that this Tag may not actually be stored in the location in this name.
|
1021
1021
|
# @param [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1Tag] google_cloud_datacatalog_v1beta1_tag_object
|
1022
1022
|
# @param [String] update_mask
|
1023
1023
|
# Note: Currently, this parameter can only take `"fields"` as value. Names of
|
@@ -1216,10 +1216,10 @@ module Google
|
|
1216
1216
|
# name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/
|
1217
1217
|
# data-catalog/docs/concepts/resource-project) for more information).
|
1218
1218
|
# @param [String] name
|
1219
|
-
# The resource name of the tag template in URL format. Example: *
|
1220
|
-
# project_id`/locations/`location`/tagTemplates/`tag_template_id` Note
|
1221
|
-
# TagTemplate and its child resources may not actually be stored in
|
1222
|
-
# in this name.
|
1219
|
+
# Identifier. The resource name of the tag template in URL format. Example: *
|
1220
|
+
# projects/`project_id`/locations/`location`/tagTemplates/`tag_template_id` Note
|
1221
|
+
# that this TagTemplate and its child resources may not actually be stored in
|
1222
|
+
# the location in this name.
|
1223
1223
|
# @param [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1TagTemplate] google_cloud_datacatalog_v1beta1_tag_template_object
|
1224
1224
|
# @param [String] update_mask
|
1225
1225
|
# Names of fields whose values to overwrite on a tag template. Currently, only `
|
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.44.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-03-17 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.
|
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.
|
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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1beta1/v0.44.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.
|
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.
|
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
|