google-cloud-dataplex-v1 1.1.0 → 1.3.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.
Files changed (34) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +30 -20
  3. data/lib/google/cloud/dataplex/v1/catalog_service/client.rb +52 -28
  4. data/lib/google/cloud/dataplex/v1/catalog_service/operations.rb +9 -5
  5. data/lib/google/cloud/dataplex/v1/catalog_service/rest/client.rb +47 -28
  6. data/lib/google/cloud/dataplex/v1/catalog_service/rest/operations.rb +40 -28
  7. data/lib/google/cloud/dataplex/v1/catalog_service/rest/service_stub.rb +222 -158
  8. data/lib/google/cloud/dataplex/v1/content_service/client.rb +30 -9
  9. data/lib/google/cloud/dataplex/v1/content_service/rest/client.rb +30 -9
  10. data/lib/google/cloud/dataplex/v1/content_service/rest/service_stub.rb +78 -50
  11. data/lib/google/cloud/dataplex/v1/data_scan_service/client.rb +40 -12
  12. data/lib/google/cloud/dataplex/v1/data_scan_service/operations.rb +9 -5
  13. data/lib/google/cloud/dataplex/v1/data_scan_service/rest/client.rb +39 -12
  14. data/lib/google/cloud/dataplex/v1/data_scan_service/rest/operations.rb +40 -28
  15. data/lib/google/cloud/dataplex/v1/data_scan_service/rest/service_stub.rb +86 -56
  16. data/lib/google/cloud/dataplex/v1/data_taxonomy_service/client.rb +41 -16
  17. data/lib/google/cloud/dataplex/v1/data_taxonomy_service/operations.rb +9 -5
  18. data/lib/google/cloud/dataplex/v1/data_taxonomy_service/rest/client.rb +38 -16
  19. data/lib/google/cloud/dataplex/v1/data_taxonomy_service/rest/operations.rb +40 -28
  20. data/lib/google/cloud/dataplex/v1/data_taxonomy_service/rest/service_stub.rb +134 -92
  21. data/lib/google/cloud/dataplex/v1/dataplex_service/client.rb +54 -34
  22. data/lib/google/cloud/dataplex/v1/dataplex_service/operations.rb +9 -5
  23. data/lib/google/cloud/dataplex/v1/dataplex_service/rest/client.rb +52 -34
  24. data/lib/google/cloud/dataplex/v1/dataplex_service/rest/operations.rb +40 -28
  25. data/lib/google/cloud/dataplex/v1/dataplex_service/rest/service_stub.rb +278 -200
  26. data/lib/google/cloud/dataplex/v1/datascans_pb.rb +2 -1
  27. data/lib/google/cloud/dataplex/v1/metadata_service/client.rb +31 -10
  28. data/lib/google/cloud/dataplex/v1/metadata_service/rest/client.rb +31 -10
  29. data/lib/google/cloud/dataplex/v1/metadata_service/rest/service_stub.rb +86 -56
  30. data/lib/google/cloud/dataplex/v1/version.rb +1 -1
  31. data/proto_docs/google/api/client.rb +19 -0
  32. data/proto_docs/google/cloud/dataplex/v1/catalog.rb +10 -4
  33. data/proto_docs/google/cloud/dataplex/v1/datascans.rb +12 -6
  34. metadata +5 -8
@@ -917,7 +917,7 @@ module Google
917
917
  # specified path. For example, to attach an aspect to a field that is
918
918
  # specified by the `schema` aspect, the path should have the format
919
919
  # `Schema.<field_name>`.
920
- # * `<aspect_type_reference>*` - matches aspects of the given type for all
920
+ # * `<aspect_type_reference>@*` - matches aspects of the given type for all
921
921
  # paths.
922
922
  # * `*@path` - matches aspects of all types on the given path.
923
923
  #
@@ -1052,6 +1052,8 @@ module Google
1052
1052
  # @!attribute [rw] query
1053
1053
  # @return [::String]
1054
1054
  # Required. The query against which entries in scope should be matched.
1055
+ # The query syntax is defined in [Search syntax for Dataplex
1056
+ # Catalog](https://cloud.google.com/dataplex/docs/search-syntax).
1055
1057
  # @!attribute [rw] page_size
1056
1058
  # @return [::Integer]
1057
1059
  # Optional. Number of results in the search page. If <=0, then defaults
@@ -1064,6 +1066,10 @@ module Google
1064
1066
  # @!attribute [rw] order_by
1065
1067
  # @return [::String]
1066
1068
  # Optional. Specifies the ordering of results.
1069
+ # Supported values are:
1070
+ # * `relevance` (default)
1071
+ # * `last_modified_timestamp`
1072
+ # * `last_modified_timestamp asc`
1067
1073
  # @!attribute [rw] scope
1068
1074
  # @return [::String]
1069
1075
  # Optional. The scope under which the search should be operating. It must
@@ -1162,9 +1168,9 @@ module Google
1162
1168
  # aspect type and are attached directly to the entry.
1163
1169
  # * `{aspect_type_reference}@{path}`: matches aspects that belong to the
1164
1170
  # specified aspect type and path.
1165
- # * `{aspect_type_reference}@*`: matches aspects that belong to the specified
1166
- # aspect type for all paths.
1167
- #
1171
+ # * `<aspect_type_reference>@*` : matches aspects of the given type for all
1172
+ # paths.
1173
+ # * `*@path` : matches aspects of all types on the given path.
1168
1174
  # Replace `{aspect_type_reference}` with a reference to the aspect type, in
1169
1175
  # the format
1170
1176
  # `{project_id_or_number}.{location_id}.{aspect_type_id}`.
@@ -57,7 +57,7 @@ module Google
57
57
  # Only fields specified in `update_mask` are updated.
58
58
  # @!attribute [rw] update_mask
59
59
  # @return [::Google::Protobuf::FieldMask]
60
- # Required. Mask of fields to update.
60
+ # Optional. Mask of fields to update.
61
61
  # @!attribute [rw] validate_only
62
62
  # @return [::Boolean]
63
63
  # Optional. Only validate the request, but do not perform mutations.
@@ -74,6 +74,11 @@ module Google
74
74
  # `projects/{project}/locations/{location_id}/dataScans/{data_scan_id}`
75
75
  # where `project` refers to a *project_id* or *project_number* and
76
76
  # `location_id` refers to a GCP region.
77
+ # @!attribute [rw] force
78
+ # @return [::Boolean]
79
+ # Optional. If set to true, any child resources of this data scan will also
80
+ # be deleted. (Otherwise, the request will only work if the data scan has no
81
+ # child resources.)
77
82
  class DeleteDataScanRequest
78
83
  include ::Google::Protobuf::MessageExts
79
84
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -294,8 +299,8 @@ module Google
294
299
  # cardinality, min/max/mean, etc).
295
300
  # @!attribute [r] name
296
301
  # @return [::String]
297
- # Output only. The relative resource name of the scan, of the form:
298
- # `projects/{project}/locations/{location_id}/dataScans/{datascan_id}`,
302
+ # Output only. Identifier. The relative resource name of the scan, of the
303
+ # form: `projects/{project}/locations/{location_id}/dataScans/{datascan_id}`,
299
304
  # where `project` refers to a *project_id* or *project_number* and
300
305
  # `location_id` refers to a GCP region.
301
306
  # @!attribute [r] uid
@@ -381,10 +386,10 @@ module Google
381
386
  # Status of the data scan execution.
382
387
  # @!attribute [rw] latest_job_start_time
383
388
  # @return [::Google::Protobuf::Timestamp]
384
- # The time when the latest DataScanJob started.
389
+ # Optional. The time when the latest DataScanJob started.
385
390
  # @!attribute [rw] latest_job_end_time
386
391
  # @return [::Google::Protobuf::Timestamp]
387
- # The time when the latest DataScanJob ended.
392
+ # Optional. The time when the latest DataScanJob ended.
388
393
  # @!attribute [rw] latest_job_create_time
389
394
  # @return [::Google::Protobuf::Timestamp]
390
395
  # Optional. The time when the DataScanJob execution was created.
@@ -406,7 +411,8 @@ module Google
406
411
  # A DataScanJob represents an instance of DataScan execution.
407
412
  # @!attribute [r] name
408
413
  # @return [::String]
409
- # Output only. The relative resource name of the DataScanJob, of the form:
414
+ # Output only. Identifier. The relative resource name of the DataScanJob, of
415
+ # the form:
410
416
  # `projects/{project}/locations/{location_id}/dataScans/{datascan_id}/jobs/{job_id}`,
411
417
  # where `project` refers to a *project_id* or *project_number* and
412
418
  # `location_id` refers to a GCP region.
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-dataplex-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-04 00:00:00.000000000 Z
10
+ date: 2025-01-15 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: gapic-common
@@ -16,7 +15,7 @@ dependencies:
16
15
  requirements:
17
16
  - - ">="
18
17
  - !ruby/object:Gem::Version
19
- version: 0.21.1
18
+ version: 0.24.0
20
19
  - - "<"
21
20
  - !ruby/object:Gem::Version
22
21
  version: 2.a
@@ -26,7 +25,7 @@ dependencies:
26
25
  requirements:
27
26
  - - ">="
28
27
  - !ruby/object:Gem::Version
29
- version: 0.21.1
28
+ version: 0.24.0
30
29
  - - "<"
31
30
  - !ruby/object:Gem::Version
32
31
  version: 2.a
@@ -209,7 +208,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
209
208
  licenses:
210
209
  - Apache-2.0
211
210
  metadata: {}
212
- post_install_message:
213
211
  rdoc_options: []
214
212
  require_paths:
215
213
  - lib
@@ -224,8 +222,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
224
222
  - !ruby/object:Gem::Version
225
223
  version: '0'
226
224
  requirements: []
227
- rubygems_version: 3.5.22
228
- signing_key:
225
+ rubygems_version: 3.6.2
229
226
  specification_version: 4
230
227
  summary: Dataplex API is used to manage the lifecycle of data lakes.
231
228
  test_files: []