google-apis-datacatalog_v1 0.37.0 → 0.39.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: 8aaa6bb8bdef1fdf547899dcd0488d36ce8bf090297bbda71c994d624b9fc971
4
- data.tar.gz: 381d7b82ba3869e01061725a9d6e4e1542ba86b98252a314a449b691783aa3e3
3
+ metadata.gz: 8735c7df65d179440d37452557e31b10931846532332f82dd47ac07c79640e06
4
+ data.tar.gz: fb9be1e830ce41d3d4a387f36ae955a5ee60953c013946bb1ad48a99743dffc5
5
5
  SHA512:
6
- metadata.gz: 5b0030c428e93e5ad4b016fb1ed8b562ba8eeff232757a7ea6699750aa7f537da713d54f85798964f17e659705cbd3b0ea0dd433f42606dd9b7c8ef9eb8d708c
7
- data.tar.gz: abba10ba9f912cc73740451667193daa6283864cbf91e9c6eafc9b6d67c1f480263f832d15733dda030a29aa2174b42dcee96970f1491a82381282cc466c3d39
6
+ metadata.gz: 969dddabbf80a09cf7a7728bec3bc4e58cc0b03f023384c7de29400ef062457ae78f674f4023302566a7303c5ad50a356a3d26c57a9e9ca8df800829821d3349
7
+ data.tar.gz: 02cb3eba9f901a2ec4067e4e023097519d413c8d0cbfa0364e4747b5982d874b4bb11adb17f6801cb7d5bf3ac6712973da478055ca10397d7bb7b6fac021cefc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-datacatalog_v1
2
2
 
3
+ ### v0.39.0 (2023-06-04)
4
+
5
+ * Regenerated from discovery document revision 20230526
6
+
7
+ ### v0.38.0 (2023-05-21)
8
+
9
+ * Regenerated from discovery document revision 20230512
10
+
3
11
  ### v0.37.0 (2023-04-30)
4
12
 
5
13
  * Regenerated from discovery document revision 20230421
@@ -1447,6 +1447,12 @@ module Google
1447
1447
  # @return [String]
1448
1448
  attr_accessor :gcs_bucket_path
1449
1449
 
1450
+ # Optional. (Optional) Dataplex task job id, if specified will be used as part
1451
+ # of ImportEntries LRO ID
1452
+ # Corresponds to the JSON property `jobId`
1453
+ # @return [String]
1454
+ attr_accessor :job_id
1455
+
1450
1456
  def initialize(**args)
1451
1457
  update!(**args)
1452
1458
  end
@@ -1454,6 +1460,7 @@ module Google
1454
1460
  # Update properties of this object
1455
1461
  def update!(**args)
1456
1462
  @gcs_bucket_path = args[:gcs_bucket_path] if args.key?(:gcs_bucket_path)
1463
+ @job_id = args[:job_id] if args.key?(:job_id)
1457
1464
  end
1458
1465
  end
1459
1466
 
@@ -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.37.0"
19
+ GEM_VERSION = "0.39.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 = "20230421"
25
+ REVISION = "20230526"
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
 
@@ -106,6 +106,14 @@ module Google
106
106
  # sensitive. For example: * `//bigquery.googleapis.com/projects/`PROJECT_ID`/
107
107
  # datasets/`DATASET_ID`/tables/`TABLE_ID`` * `//pubsub.googleapis.com/projects/`
108
108
  # PROJECT_ID`/topics/`TOPIC_ID``
109
+ # @param [String] location
110
+ # Location where the lookup should be performed. Required to lookup entry that
111
+ # is not a part of `DPMS` or `DATAPLEX` `integrated_system` using its `
112
+ # fully_qualified_name`. Ignored in other cases.
113
+ # @param [String] project
114
+ # Project where the lookup should be performed. Required to lookup entry that is
115
+ # not a part of `DPMS` or `DATAPLEX` `integrated_system` using its `
116
+ # fully_qualified_name`. Ignored in other cases.
109
117
  # @param [String] sql_resource
110
118
  # The SQL name of the entry. SQL names are case-sensitive. Examples: * `pubsub.
111
119
  # topic.`PROJECT_ID`.`TOPIC_ID`` * `pubsub.topic.`PROJECT_ID`.`\```TOPIC.ID.
@@ -131,12 +139,14 @@ module Google
131
139
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
132
140
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
133
141
  # @raise [Google::Apis::AuthorizationError] Authorization is required
134
- def lookup_entry(fully_qualified_name: nil, linked_resource: nil, sql_resource: nil, fields: nil, quota_user: nil, options: nil, &block)
142
+ def lookup_entry(fully_qualified_name: nil, linked_resource: nil, location: nil, project: nil, sql_resource: nil, fields: nil, quota_user: nil, options: nil, &block)
135
143
  command = make_simple_command(:get, 'v1/entries:lookup', options)
136
144
  command.response_representation = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Entry::Representation
137
145
  command.response_class = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Entry
138
146
  command.query['fullyQualifiedName'] = fully_qualified_name unless fully_qualified_name.nil?
139
147
  command.query['linkedResource'] = linked_resource unless linked_resource.nil?
148
+ command.query['location'] = location unless location.nil?
149
+ command.query['project'] = project unless project.nil?
140
150
  command.query['sqlResource'] = sql_resource unless sql_resource.nil?
141
151
  command.query['fields'] = fields unless fields.nil?
142
152
  command.query['quotaUser'] = quota_user unless quota_user.nil?
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.37.0
4
+ version: 0.39.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-04-30 00:00:00.000000000 Z
11
+ date: 2023-06-04 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.37.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1/v0.39.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: []