google-cloud-data_catalog-v1 0.6.0 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/google/cloud/data_catalog/v1.rb +2 -0
- data/lib/google/cloud/data_catalog/v1/data_catalog/client.rb +182 -64
- data/lib/google/cloud/data_catalog/v1/data_catalog/paths.rb +23 -0
- data/lib/google/cloud/data_catalog/v1/policy_tag_manager.rb +54 -0
- data/lib/google/cloud/data_catalog/v1/policy_tag_manager/client.rb +1320 -0
- data/lib/google/cloud/data_catalog/v1/policy_tag_manager/credentials.rb +51 -0
- data/lib/google/cloud/data_catalog/v1/policy_tag_manager/paths.rb +90 -0
- data/lib/google/cloud/data_catalog/v1/policy_tag_manager_serialization.rb +51 -0
- data/lib/google/cloud/data_catalog/v1/policy_tag_manager_serialization/client.rb +474 -0
- data/lib/google/cloud/data_catalog/v1/policy_tag_manager_serialization/credentials.rb +51 -0
- data/lib/google/cloud/data_catalog/v1/policy_tag_manager_serialization/paths.rb +69 -0
- data/lib/google/cloud/data_catalog/v1/version.rb +1 -1
- data/lib/google/cloud/datacatalog/v1/common_pb.rb +1 -0
- data/lib/google/cloud/datacatalog/v1/data_source_pb.rb +30 -0
- data/lib/google/cloud/datacatalog/v1/datacatalog_pb.rb +25 -0
- data/lib/google/cloud/datacatalog/v1/datacatalog_services_pb.rb +6 -3
- data/lib/google/cloud/datacatalog/v1/policytagmanager_pb.rb +107 -0
- data/lib/google/cloud/datacatalog/v1/policytagmanager_services_pb.rb +85 -0
- data/lib/google/cloud/datacatalog/v1/policytagmanagerserialization_pb.rb +70 -0
- data/lib/google/cloud/datacatalog/v1/policytagmanagerserialization_services_pb.rb +62 -0
- data/lib/google/cloud/datacatalog/v1/search_pb.rb +2 -0
- data/lib/google/cloud/datacatalog/v1/table_spec_pb.rb +1 -0
- data/lib/google/cloud/datacatalog/v1/tags_pb.rb +1 -0
- data/proto_docs/google/cloud/datacatalog/v1/common.rb +3 -0
- data/proto_docs/google/cloud/datacatalog/v1/data_source.rb +51 -0
- data/proto_docs/google/cloud/datacatalog/v1/datacatalog.rb +212 -111
- data/proto_docs/google/cloud/datacatalog/v1/policytagmanager.rb +292 -0
- data/proto_docs/google/cloud/datacatalog/v1/policytagmanagerserialization.rb +141 -0
- data/proto_docs/google/cloud/datacatalog/v1/schema.rb +16 -4
- data/proto_docs/google/cloud/datacatalog/v1/search.rb +14 -0
- data/proto_docs/google/cloud/datacatalog/v1/table_spec.rb +3 -0
- data/proto_docs/google/cloud/datacatalog/v1/tags.rb +44 -21
- metadata +20 -4
@@ -47,6 +47,9 @@ module Google
|
|
47
47
|
# Example:
|
48
48
|
#
|
49
49
|
# * `//bigquery.googleapis.com/projects/projectId/datasets/datasetId/tables/tableId`
|
50
|
+
# @!attribute [rw] modify_time
|
51
|
+
# @return [::Google::Protobuf::Timestamp]
|
52
|
+
# Last-modified timestamp of the entry from the managing system.
|
50
53
|
# @!attribute [r] integrated_system
|
51
54
|
# @return [::Google::Cloud::DataCatalog::V1::IntegratedSystem]
|
52
55
|
# Output only. This field indicates the entry's source system that Data Catalog
|
@@ -55,6 +58,17 @@ module Google
|
|
55
58
|
# @return [::String]
|
56
59
|
# This field indicates the entry's source system that Data Catalog does not
|
57
60
|
# integrate with.
|
61
|
+
# @!attribute [rw] fully_qualified_name
|
62
|
+
# @return [::String]
|
63
|
+
# Fully Qualified Name of the resource.
|
64
|
+
# There are two main forms of FQNs:
|
65
|
+
# \\{system}:\\{project}.\\{dot-separated path to resource}
|
66
|
+
# for non-regionalized resources
|
67
|
+
# \\{system}:\\{project}.\\{location id}.\\{dot-separated path to resource}
|
68
|
+
# for regionalized resources
|
69
|
+
# Examples:
|
70
|
+
# * dataproc_metastore:projectId.locationId.instanceId.databaseId.tableId
|
71
|
+
# * bigquery:table.project_id.dataset_id.table_id
|
58
72
|
class SearchCatalogResult
|
59
73
|
include ::Google::Protobuf::MessageExts
|
60
74
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -31,15 +31,17 @@ module Google
|
|
31
31
|
# @return [::String]
|
32
32
|
# The resource name of the tag in URL format. Example:
|
33
33
|
#
|
34
|
-
#
|
34
|
+
# `projects/{project_id}/locations/{location}/entrygroups/{entry_group_id}/entries/{entry_id}/tags/{tag_id}`
|
35
35
|
#
|
36
36
|
# where `tag_id` is a system-generated identifier.
|
37
|
-
#
|
37
|
+
#
|
38
|
+
# Note: The tag itself might not be stored in the location specified in its
|
39
|
+
# name.
|
38
40
|
# @!attribute [rw] template
|
39
41
|
# @return [::String]
|
40
42
|
# Required. The resource name of the tag template that this tag uses. Example:
|
41
43
|
#
|
42
|
-
#
|
44
|
+
# `projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id}`
|
43
45
|
#
|
44
46
|
# This field cannot be modified after creation.
|
45
47
|
# @!attribute [r] template_display_name
|
@@ -47,13 +49,11 @@ module Google
|
|
47
49
|
# Output only. The display name of the tag template.
|
48
50
|
# @!attribute [rw] column
|
49
51
|
# @return [::String]
|
50
|
-
# Resources like
|
52
|
+
# Resources like entry can have schemas associated with them. This scope
|
51
53
|
# allows users to attach tags to an individual column based on that schema.
|
52
54
|
#
|
53
|
-
#
|
54
|
-
#
|
55
|
-
#
|
56
|
-
# * `outer_column.inner_column`
|
55
|
+
# To attach a tag to a nested column, separate column names with a dot
|
56
|
+
# (`.`). Example: `column.nested_column`.
|
57
57
|
# @!attribute [rw] fields
|
58
58
|
# @return [::Google::Protobuf::Map{::String => ::Google::Cloud::DataCatalog::V1::TagField}]
|
59
59
|
# Required. This maps the ID of a tag field to the value of and additional information
|
@@ -84,6 +84,7 @@ module Google
|
|
84
84
|
# @!attribute [rw] string_value
|
85
85
|
# @return [::String]
|
86
86
|
# Holds the value for a tag field with string type.
|
87
|
+
# The maximum length is 2000 UTF-8 characters.
|
87
88
|
# @!attribute [rw] bool_value
|
88
89
|
# @return [::Boolean]
|
89
90
|
# Holds the value for a tag field with boolean type.
|
@@ -127,13 +128,17 @@ module Google
|
|
127
128
|
# @return [::String]
|
128
129
|
# The resource name of the tag template in URL format. Example:
|
129
130
|
#
|
130
|
-
#
|
131
|
+
# `projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id}`
|
131
132
|
#
|
132
|
-
# Note
|
133
|
-
# stored in the location in
|
133
|
+
# Note: The tag template itself and its child resources might not be
|
134
|
+
# stored in the location specified in its name.
|
134
135
|
# @!attribute [rw] display_name
|
135
136
|
# @return [::String]
|
136
|
-
#
|
137
|
+
# Display name for this template. Defaults to an empty string.
|
138
|
+
#
|
139
|
+
# The name must contain only Unicode letters, numbers (0-9), underscores (_),
|
140
|
+
# dashes (-), spaces ( ), and can't start or end with spaces.
|
141
|
+
# The maximum length is 200 characters.
|
137
142
|
# @!attribute [rw] fields
|
138
143
|
# @return [::Google::Protobuf::Map{::String => ::Google::Cloud::DataCatalog::V1::TagTemplateField}]
|
139
144
|
# Required. Map of tag template field IDs to the settings for the field.
|
@@ -163,19 +168,30 @@ module Google
|
|
163
168
|
# @return [::String]
|
164
169
|
# Output only. The resource name of the tag template field in URL format. Example:
|
165
170
|
#
|
166
|
-
#
|
171
|
+
# `projects/{project_id}/locations/{location}/tagTemplates/{tag_template}/fields/{field}`
|
167
172
|
#
|
168
|
-
# Note
|
169
|
-
# in
|
173
|
+
# Note: The `TagTemplateField` itself might not be stored in the location
|
174
|
+
# specified in its name.
|
175
|
+
#
|
176
|
+
# The name must contain only letters (a-z, A-Z), numbers (0-9),
|
177
|
+
# or underscores (_), and must start with a letter or underscore.
|
178
|
+
# The maximum length is 64 characters.
|
170
179
|
# @!attribute [rw] display_name
|
171
180
|
# @return [::String]
|
172
181
|
# The display name for this field. Defaults to an empty string.
|
182
|
+
#
|
183
|
+
# The name must contain only Unicode letters, numbers (0-9), underscores (_),
|
184
|
+
# dashes (-), spaces ( ), and can't start or end with spaces.
|
185
|
+
# The maximum length is 200 characters.
|
173
186
|
# @!attribute [rw] type
|
174
187
|
# @return [::Google::Cloud::DataCatalog::V1::FieldType]
|
175
188
|
# Required. The type of value this tag field can contain.
|
176
189
|
# @!attribute [rw] is_required
|
177
190
|
# @return [::Boolean]
|
178
191
|
# Whether this is a required field. Defaults to false.
|
192
|
+
# @!attribute [rw] description
|
193
|
+
# @return [::String]
|
194
|
+
# The description for this field. Defaults to an empty string.
|
179
195
|
# @!attribute [rw] order
|
180
196
|
# @return [::Integer]
|
181
197
|
# The order of this field with respect to other fields in this tag
|
@@ -199,12 +215,15 @@ module Google
|
|
199
215
|
|
200
216
|
# @!attribute [rw] allowed_values
|
201
217
|
# @return [::Array<::Google::Cloud::DataCatalog::V1::FieldType::EnumType::EnumValue>]
|
202
|
-
#
|
203
|
-
#
|
204
|
-
#
|
205
|
-
#
|
206
|
-
#
|
207
|
-
#
|
218
|
+
# The set of allowed values for this enum.
|
219
|
+
#
|
220
|
+
# This set must not be empty and can include up to 100 allowed values.
|
221
|
+
# The display names of the values in this set must not be empty and must
|
222
|
+
# be case-insensitively unique within this set.
|
223
|
+
#
|
224
|
+
# The order of items in this set is preserved. This field can be used to
|
225
|
+
# create, remove and reorder enum values. To rename enum values, use the
|
226
|
+
# `RenameTagTemplateFieldEnumValue` method.
|
208
227
|
class EnumType
|
209
228
|
include ::Google::Protobuf::MessageExts
|
210
229
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -212,6 +231,10 @@ module Google
|
|
212
231
|
# @!attribute [rw] display_name
|
213
232
|
# @return [::String]
|
214
233
|
# Required. The display name of the enum value. Must not be an empty string.
|
234
|
+
#
|
235
|
+
# The name must contain only Unicode letters, numbers (0-9), underscores
|
236
|
+
# (_), dashes (-), spaces ( ), and can't start or end with spaces. The
|
237
|
+
# maximum length is 200 characters.
|
215
238
|
class EnumValue
|
216
239
|
include ::Google::Protobuf::MessageExts
|
217
240
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-data_catalog-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.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: 2021-03-
|
11
|
+
date: 2021-03-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.4'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '0.
|
26
|
+
version: '0.4'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: google-cloud-errors
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -191,11 +191,24 @@ files:
|
|
191
191
|
- lib/google/cloud/data_catalog/v1/data_catalog/client.rb
|
192
192
|
- lib/google/cloud/data_catalog/v1/data_catalog/credentials.rb
|
193
193
|
- lib/google/cloud/data_catalog/v1/data_catalog/paths.rb
|
194
|
+
- lib/google/cloud/data_catalog/v1/policy_tag_manager.rb
|
195
|
+
- lib/google/cloud/data_catalog/v1/policy_tag_manager/client.rb
|
196
|
+
- lib/google/cloud/data_catalog/v1/policy_tag_manager/credentials.rb
|
197
|
+
- lib/google/cloud/data_catalog/v1/policy_tag_manager/paths.rb
|
198
|
+
- lib/google/cloud/data_catalog/v1/policy_tag_manager_serialization.rb
|
199
|
+
- lib/google/cloud/data_catalog/v1/policy_tag_manager_serialization/client.rb
|
200
|
+
- lib/google/cloud/data_catalog/v1/policy_tag_manager_serialization/credentials.rb
|
201
|
+
- lib/google/cloud/data_catalog/v1/policy_tag_manager_serialization/paths.rb
|
194
202
|
- lib/google/cloud/data_catalog/v1/version.rb
|
195
203
|
- lib/google/cloud/datacatalog/v1/common_pb.rb
|
204
|
+
- lib/google/cloud/datacatalog/v1/data_source_pb.rb
|
196
205
|
- lib/google/cloud/datacatalog/v1/datacatalog_pb.rb
|
197
206
|
- lib/google/cloud/datacatalog/v1/datacatalog_services_pb.rb
|
198
207
|
- lib/google/cloud/datacatalog/v1/gcs_fileset_spec_pb.rb
|
208
|
+
- lib/google/cloud/datacatalog/v1/policytagmanager_pb.rb
|
209
|
+
- lib/google/cloud/datacatalog/v1/policytagmanager_services_pb.rb
|
210
|
+
- lib/google/cloud/datacatalog/v1/policytagmanagerserialization_pb.rb
|
211
|
+
- lib/google/cloud/datacatalog/v1/policytagmanagerserialization_services_pb.rb
|
199
212
|
- lib/google/cloud/datacatalog/v1/schema_pb.rb
|
200
213
|
- lib/google/cloud/datacatalog/v1/search_pb.rb
|
201
214
|
- lib/google/cloud/datacatalog/v1/table_spec_pb.rb
|
@@ -205,8 +218,11 @@ files:
|
|
205
218
|
- proto_docs/google/api/field_behavior.rb
|
206
219
|
- proto_docs/google/api/resource.rb
|
207
220
|
- proto_docs/google/cloud/datacatalog/v1/common.rb
|
221
|
+
- proto_docs/google/cloud/datacatalog/v1/data_source.rb
|
208
222
|
- proto_docs/google/cloud/datacatalog/v1/datacatalog.rb
|
209
223
|
- proto_docs/google/cloud/datacatalog/v1/gcs_fileset_spec.rb
|
224
|
+
- proto_docs/google/cloud/datacatalog/v1/policytagmanager.rb
|
225
|
+
- proto_docs/google/cloud/datacatalog/v1/policytagmanagerserialization.rb
|
210
226
|
- proto_docs/google/cloud/datacatalog/v1/schema.rb
|
211
227
|
- proto_docs/google/cloud/datacatalog/v1/search.rb
|
212
228
|
- proto_docs/google/cloud/datacatalog/v1/table_spec.rb
|