google-apis-datacatalog_v1 0.38.0 → 0.40.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 72af33b2d2d0ad17506281cc3755b03d16f35c6fd9252110130c314e29b431fb
4
- data.tar.gz: 9fc2aa6b14bf0fa33ccd3e1f2c0049bd687caa114b063c4ca4c2b53fd3441015
3
+ metadata.gz: 4bf545a8aeb39650d3e94457dd521a244f1e5c4af5ccd38df0282dd9bab1e1c2
4
+ data.tar.gz: 1f650cf0dce4decf79cb47832fa9b7a63e112ecb68fb722e299af6a7d4632698
5
5
  SHA512:
6
- metadata.gz: 5e5343784096549b670e3fb995cd46f8fa89ee1d2a67850c8022faed025ee3a6d473d3180084f71edbf8f0a70f11bed3ab9c66c374cdb3ca426387c399b86e92
7
- data.tar.gz: 6232d285e44ca856440c2810a2740bd5cc87f20e268d1c1614b5b7f671ff33846294b0f36757c625fae4c7723edbf7564b028a03bcf232b18da17f5e6afa0ea2
6
+ metadata.gz: f0efdcfa5d4a4bac8b269bb139804d84af50312f9e9c8f2af40b1b41aaaecf424292d9a44ff8ac8af752924ab11c349c2c47d8ad1e48fd9cc962087d57c79edf
7
+ data.tar.gz: aa5bd9e1ce3d8cb05d4eba10073e5a65cbdc6b50b052e9b3a4b5caff764bbdeaca33590a35918357f5b719a2fa760741708f9abc6bc296c085421d1e5ca8ae1e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-datacatalog_v1
2
2
 
3
+ ### v0.40.0 (2023-06-25)
4
+
5
+ * Regenerated from discovery document revision 20230619
6
+
7
+ ### v0.39.0 (2023-06-04)
8
+
9
+ * Regenerated from discovery document revision 20230526
10
+
3
11
  ### v0.38.0 (2023-05-21)
4
12
 
5
13
  * Regenerated from discovery document revision 20230512
@@ -1094,9 +1094,7 @@ module Google
1094
1094
  # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SqlDatabaseSystemSpec]
1095
1095
  attr_accessor :sql_database_system_spec
1096
1096
 
1097
- # The type of the entry. Only used for entries with types listed in the `
1098
- # EntryType` enum. Currently, only `FILESET` enum value is allowed. All other
1099
- # entries created in Data Catalog must use the `user_specified_type`.
1097
+ # The type of the entry. For details, see [`EntryType`](#entrytype).
1100
1098
  # Corresponds to the JSON property `type`
1101
1099
  # @return [String]
1102
1100
  attr_accessor :type
@@ -1447,6 +1445,12 @@ module Google
1447
1445
  # @return [String]
1448
1446
  attr_accessor :gcs_bucket_path
1449
1447
 
1448
+ # Optional. (Optional) Dataplex task job id, if specified will be used as part
1449
+ # of ImportEntries LRO ID
1450
+ # Corresponds to the JSON property `jobId`
1451
+ # @return [String]
1452
+ attr_accessor :job_id
1453
+
1450
1454
  def initialize(**args)
1451
1455
  update!(**args)
1452
1456
  end
@@ -1454,6 +1458,7 @@ module Google
1454
1458
  # Update properties of this object
1455
1459
  def update!(**args)
1456
1460
  @gcs_bucket_path = args[:gcs_bucket_path] if args.key?(:gcs_bucket_path)
1461
+ @job_id = args[:job_id] if args.key?(:job_id)
1457
1462
  end
1458
1463
  end
1459
1464
 
@@ -2256,14 +2261,19 @@ module Google
2256
2261
  # Specifies the order of results. Currently supported case-sensitive values are:
2257
2262
  # * `relevance` that can only be descending * `last_modified_timestamp [asc|desc]
2258
2263
  # ` with descending (`desc`) as default * `default` that can only be descending
2259
- # If this parameter is omitted, it defaults to the descending `relevance`.
2264
+ # Search queries don't guarantee full recall. Results that match your query
2265
+ # might not be returned, even in subsequent result pages. Additionally, returned
2266
+ # (and not returned) results can vary if you repeat search queries. If you are
2267
+ # experiencing recall issues and you don't have to fetch the results in any
2268
+ # specific order, consider setting this parameter to `default`. If this
2269
+ # parameter is omitted, it defaults to the descending `relevance`.
2260
2270
  # Corresponds to the JSON property `orderBy`
2261
2271
  # @return [String]
2262
2272
  attr_accessor :order_by
2263
2273
 
2264
- # Number of results to return in a single search page. Can't be negative or 0,
2265
- # defaults to 10 in this case. The maximum number is 1000. If exceeded, throws
2266
- # an "invalid argument" exception.
2274
+ # Upper bound on the number of results you can get in a single response. Can't
2275
+ # be negative or 0, defaults to 10 in this case. The maximum number is 1000. If
2276
+ # exceeded, throws an "invalid argument" exception.
2267
2277
  # Corresponds to the JSON property `pageSize`
2268
2278
  # @return [Fixnum]
2269
2279
  attr_accessor :page_size
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatacatalogV1
18
18
  # Version of the google-apis-datacatalog_v1 gem
19
- GEM_VERSION = "0.38.0"
19
+ GEM_VERSION = "0.40.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230512"
25
+ REVISION = "20230619"
26
26
  end
27
27
  end
28
28
  end
@@ -1051,6 +1051,7 @@ module Google
1051
1051
  # @private
1052
1052
  class Representation < Google::Apis::Core::JsonRepresentation
1053
1053
  property :gcs_bucket_path, as: 'gcsBucketPath'
1054
+ property :job_id, as: 'jobId'
1054
1055
  end
1055
1056
  end
1056
1057
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datacatalog_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.38.0
4
+ version: 0.40.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: 2023-05-28 00:00:00.000000000 Z
11
+ date: 2023-07-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1/v0.38.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1/v0.40.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datacatalog_v1
63
63
  post_install_message:
64
64
  rdoc_options: []