google-cloud-data_catalog-v1beta1 0.3.2 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -118,6 +118,10 @@ module Google
118
118
  # @return [::String]
119
119
  # Optional link to proto reference documentation. Example:
120
120
  # https://cloud.google.com/pubsub/lite/docs/reference/rpc
121
+ # @!attribute [rw] rest_reference_documentation_uri
122
+ # @return [::String]
123
+ # Optional link to REST reference documentation. Example:
124
+ # https://cloud.google.com/pubsub/lite/docs/reference/rest
121
125
  class Publishing
122
126
  include ::Google::Protobuf::MessageExts
123
127
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -286,6 +290,13 @@ module Google
286
290
  # @return [::String]
287
291
  # The fully qualified name of the method, for which the options below apply.
288
292
  # This is used to find the method to apply the options.
293
+ #
294
+ # Example:
295
+ #
296
+ # publishing:
297
+ # method_settings:
298
+ # - selector: google.storage.control.v2.StorageControl.CreateFolder
299
+ # # method settings for CreateFolder...
289
300
  # @!attribute [rw] long_running
290
301
  # @return [::Google::Api::MethodSettings::LongRunning]
291
302
  # Describes settings to use for long-running operations when generating
@@ -294,17 +305,14 @@ module Google
294
305
  #
295
306
  # Example of a YAML configuration::
296
307
  #
297
- # publishing:
298
- # method_settings:
308
+ # publishing:
309
+ # method_settings:
299
310
  # - selector: google.cloud.speech.v2.Speech.BatchRecognize
300
311
  # long_running:
301
- # initial_poll_delay:
302
- # seconds: 60 # 1 minute
312
+ # initial_poll_delay: 60s # 1 minute
303
313
  # poll_delay_multiplier: 1.5
304
- # max_poll_delay:
305
- # seconds: 360 # 6 minutes
306
- # total_poll_timeout:
307
- # seconds: 54000 # 90 minutes
314
+ # max_poll_delay: 360s # 6 minutes
315
+ # total_poll_timeout: 54000s # 90 minutes
308
316
  # @!attribute [rw] auto_populated_fields
309
317
  # @return [::Array<::String>]
310
318
  # List of top-level fields of the request message, that should be
@@ -313,8 +321,8 @@ module Google
313
321
  #
314
322
  # Example of a YAML configuration:
315
323
  #
316
- # publishing:
317
- # method_settings:
324
+ # publishing:
325
+ # method_settings:
318
326
  # - selector: google.example.v1.ExampleService.CreateExample
319
327
  # auto_populated_fields:
320
328
  # - request_id
@@ -124,8 +124,13 @@ module Google
124
124
  # @return [::String]
125
125
  # The plural name used in the resource name and permission names, such as
126
126
  # 'projects' for the resource name of 'projects/\\{project}' and the permission
127
- # name of 'cloudresourcemanager.googleapis.com/projects.get'. It is the same
128
- # concept of the `plural` field in k8s CRD spec
127
+ # name of 'cloudresourcemanager.googleapis.com/projects.get'. One exception
128
+ # to this is for Nested Collections that have stuttering names, as defined
129
+ # in [AIP-122](https://google.aip.dev/122#nested-collections), where the
130
+ # collection ID in the resource name pattern does not necessarily directly
131
+ # match the `plural` value.
132
+ #
133
+ # It is the same concept of the `plural` field in k8s CRD spec
129
134
  # https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/
130
135
  #
131
136
  # Note: The plural form is required even for singleton resources. See
@@ -380,8 +380,8 @@ module Google
380
380
  # {::Google::Cloud::DataCatalog::V1beta1::Tag Tag}.
381
381
  # @!attribute [r] name
382
382
  # @return [::String]
383
- # Output only. The Data Catalog resource name of the entry in URL format.
384
- # Example:
383
+ # Output only. Identifier. The Data Catalog resource name of the entry in URL
384
+ # format. Example:
385
385
  #
386
386
  # * projects/\\{project_id}/locations/\\{location}/entryGroups/\\{entry_group_id}/entries/\\{entry_id}
387
387
  #
@@ -472,7 +472,7 @@ module Google
472
472
  # Data Catalog {::Google::Cloud::DataCatalog::V1beta1::Entry Entry} resources.
473
473
  # @!attribute [rw] name
474
474
  # @return [::String]
475
- # The resource name of the entry group in URL format. Example:
475
+ # Identifier. The resource name of the entry group in URL format. Example:
476
476
  #
477
477
  # * projects/\\{project_id}/locations/\\{location}/entryGroups/\\{entry_group_id}
478
478
  #
@@ -29,7 +29,7 @@ module Google
29
29
  # on the permissions needed to create or view tags.
30
30
  # @!attribute [rw] name
31
31
  # @return [::String]
32
- # The resource name of the tag in URL format. Example:
32
+ # Identifier. 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
  #
@@ -127,7 +127,7 @@ module Google
127
127
  # which includes permission to use the tag template to tag resources.
128
128
  # @!attribute [rw] name
129
129
  # @return [::String]
130
- # The resource name of the tag template in URL format. Example:
130
+ # Identifier. The resource name of the tag template in URL format. Example:
131
131
  #
132
132
  # * projects/\\{project_id}/locations/\\{location}/tagTemplates/\\{tag_template_id}
133
133
  #
@@ -146,6 +146,9 @@ module Google
146
146
  # letters (both uppercase and lowercase), numbers (0-9) and underscores (_).
147
147
  # Field IDs must be at least 1 character long and at most
148
148
  # 64 characters long. Field IDs must start with a letter or underscore.
149
+ # @!attribute [r] dataplex_transfer_status
150
+ # @return [::Google::Cloud::DataCatalog::V1beta1::TagTemplate::DataplexTransferStatus]
151
+ # Output only. Transfer status of the TagTemplate
149
152
  class TagTemplate
150
153
  include ::Google::Protobuf::MessageExts
151
154
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -158,13 +161,24 @@ module Google
158
161
  include ::Google::Protobuf::MessageExts
159
162
  extend ::Google::Protobuf::MessageExts::ClassMethods
160
163
  end
164
+
165
+ # This enum describes TagTemplate transfer status to Dataplex service.
166
+ module DataplexTransferStatus
167
+ # Default value. TagTemplate and its tags are only visible and editable in
168
+ # DataCatalog.
169
+ DATAPLEX_TRANSFER_STATUS_UNSPECIFIED = 0
170
+
171
+ # TagTemplate and its tags are auto-copied to Dataplex service.
172
+ # Visible in both services. Editable in DataCatalog, read-only in Dataplex.
173
+ MIGRATED = 1
174
+ end
161
175
  end
162
176
 
163
177
  # The template for an individual field within a tag template.
164
178
  # @!attribute [r] name
165
179
  # @return [::String]
166
- # Output only. The resource name of the tag template field in URL format.
167
- # Example:
180
+ # Output only. Identifier. The resource name of the tag template field in URL
181
+ # format. Example:
168
182
  #
169
183
  # * projects/\\{project_id}/locations/\\{location}/tagTemplates/\\{tag_template}/fields/\\{field}
170
184
  #
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-data_catalog-v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.5.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-02-01 00:00:00.000000000 Z
11
+ date: 2024-07-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -64,118 +64,6 @@ dependencies:
64
64
  - - "<"
65
65
  - !ruby/object:Gem::Version
66
66
  version: 2.a
67
- - !ruby/object:Gem::Dependency
68
- name: google-style
69
- requirement: !ruby/object:Gem::Requirement
70
- requirements:
71
- - - "~>"
72
- - !ruby/object:Gem::Version
73
- version: 1.26.3
74
- type: :development
75
- prerelease: false
76
- version_requirements: !ruby/object:Gem::Requirement
77
- requirements:
78
- - - "~>"
79
- - !ruby/object:Gem::Version
80
- version: 1.26.3
81
- - !ruby/object:Gem::Dependency
82
- name: minitest
83
- requirement: !ruby/object:Gem::Requirement
84
- requirements:
85
- - - "~>"
86
- - !ruby/object:Gem::Version
87
- version: '5.16'
88
- type: :development
89
- prerelease: false
90
- version_requirements: !ruby/object:Gem::Requirement
91
- requirements:
92
- - - "~>"
93
- - !ruby/object:Gem::Version
94
- version: '5.16'
95
- - !ruby/object:Gem::Dependency
96
- name: minitest-focus
97
- requirement: !ruby/object:Gem::Requirement
98
- requirements:
99
- - - "~>"
100
- - !ruby/object:Gem::Version
101
- version: '1.1'
102
- type: :development
103
- prerelease: false
104
- version_requirements: !ruby/object:Gem::Requirement
105
- requirements:
106
- - - "~>"
107
- - !ruby/object:Gem::Version
108
- version: '1.1'
109
- - !ruby/object:Gem::Dependency
110
- name: minitest-rg
111
- requirement: !ruby/object:Gem::Requirement
112
- requirements:
113
- - - "~>"
114
- - !ruby/object:Gem::Version
115
- version: '5.2'
116
- type: :development
117
- prerelease: false
118
- version_requirements: !ruby/object:Gem::Requirement
119
- requirements:
120
- - - "~>"
121
- - !ruby/object:Gem::Version
122
- version: '5.2'
123
- - !ruby/object:Gem::Dependency
124
- name: rake
125
- requirement: !ruby/object:Gem::Requirement
126
- requirements:
127
- - - ">="
128
- - !ruby/object:Gem::Version
129
- version: '13.0'
130
- type: :development
131
- prerelease: false
132
- version_requirements: !ruby/object:Gem::Requirement
133
- requirements:
134
- - - ">="
135
- - !ruby/object:Gem::Version
136
- version: '13.0'
137
- - !ruby/object:Gem::Dependency
138
- name: redcarpet
139
- requirement: !ruby/object:Gem::Requirement
140
- requirements:
141
- - - "~>"
142
- - !ruby/object:Gem::Version
143
- version: '3.0'
144
- type: :development
145
- prerelease: false
146
- version_requirements: !ruby/object:Gem::Requirement
147
- requirements:
148
- - - "~>"
149
- - !ruby/object:Gem::Version
150
- version: '3.0'
151
- - !ruby/object:Gem::Dependency
152
- name: simplecov
153
- requirement: !ruby/object:Gem::Requirement
154
- requirements:
155
- - - "~>"
156
- - !ruby/object:Gem::Version
157
- version: '0.18'
158
- type: :development
159
- prerelease: false
160
- version_requirements: !ruby/object:Gem::Requirement
161
- requirements:
162
- - - "~>"
163
- - !ruby/object:Gem::Version
164
- version: '0.18'
165
- - !ruby/object:Gem::Dependency
166
- name: yard
167
- requirement: !ruby/object:Gem::Requirement
168
- requirements:
169
- - - "~>"
170
- - !ruby/object:Gem::Version
171
- version: '0.9'
172
- type: :development
173
- prerelease: false
174
- version_requirements: !ruby/object:Gem::Requirement
175
- requirements:
176
- - - "~>"
177
- - !ruby/object:Gem::Version
178
- version: '0.9'
179
67
  description: DataCatalog is a centralized and unified data catalog service for all
180
68
  your Cloud resources, where users and systems can discover data, explore and curate
181
69
  its semantics, understand how to act on it, and help govern its usage. Note that
@@ -263,14 +151,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
263
151
  requirements:
264
152
  - - ">="
265
153
  - !ruby/object:Gem::Version
266
- version: '2.6'
154
+ version: '2.7'
267
155
  required_rubygems_version: !ruby/object:Gem::Requirement
268
156
  requirements:
269
157
  - - ">="
270
158
  - !ruby/object:Gem::Version
271
159
  version: '0'
272
160
  requirements: []
273
- rubygems_version: 3.5.3
161
+ rubygems_version: 3.5.6
274
162
  signing_key:
275
163
  specification_version: 4
276
164
  summary: A fully managed and highly scalable data discovery and metadata management