google-cloud-data_catalog-lineage-v1 0.4.0 → 0.6.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: 22aecaffc6c64d28d6cdac94f94dfd89fb32a0caf130a463d73cb665c845298f
4
- data.tar.gz: 3c4a049c68b98a36cf088e103eecf9a6d5430d036df8125f2657787c4011eaf3
3
+ metadata.gz: 522ea5b3a0d585d5ad3769e8843e2f9ca04945d2715a0b251c853560679e81da
4
+ data.tar.gz: 3062825344cc373069516cd27a306a4c475c63714c000c34c703e4d5c781bace
5
5
  SHA512:
6
- metadata.gz: 721b16b9c6bd8eb10ad8754eb8a7954aeba318496cceaf27107b230bfebe808fe7ebca03671537bb5f17e913fdda2f99e51b05c6ed7506535bd972522146f502
7
- data.tar.gz: f50651c1ac1ae1d413578afaaa60c00990fc33f9a5e45a38ca49e1d3cb16847f21304c6c7977f62a99392b1c355b38821c3b220b824471d44c7384e7085a4b6d
6
+ metadata.gz: 59c16a33c2c9b0b4bc23e51649462588276604da05e7fbed2d9bfdbfff76c814c6addc78a00fd3f06a041fdef535607a7ac477a97db961fb6c2cbf25f4129ed8
7
+ data.tar.gz: 420f50799d3beb473351822340aef9f3c8869f7f14b559028d67784f59e97cf9c2d89c3ebde24d23d7a7d7c2d5aed2aface3758a740662d062894cbed5411441
data/AUTHENTICATION.md CHANGED
@@ -1,149 +1,122 @@
1
1
  # Authentication
2
2
 
3
- In general, the google-cloud-data_catalog-lineage-v1 library uses
4
- [Service Account](https://cloud.google.com/iam/docs/creating-managing-service-accounts)
5
- credentials to connect to Google Cloud services. When running within
6
- [Google Cloud Platform environments](#google-cloud-platform-environments) the
7
- credentials will be discovered automatically. When running on other
8
- environments, the Service Account credentials can be specified by providing the
9
- path to the
10
- [JSON keyfile](https://cloud.google.com/iam/docs/managing-service-account-keys)
11
- for the account (or the JSON itself) in
12
- [environment variables](#environment-variables). Additionally, Cloud SDK
13
- credentials can also be discovered automatically, but this is only recommended
14
- during development.
3
+ The recommended way to authenticate to the google-cloud-data_catalog-lineage-v1 library is to use
4
+ [Application Default Credentials (ADC)](https://cloud.google.com/docs/authentication/application-default-credentials).
5
+ To review all of your authentication options, see [Credentials lookup](#credential-lookup).
15
6
 
16
7
  ## Quickstart
17
8
 
18
- 1. [Create a service account and credentials](#creating-a-service-account).
19
- 2. Set the [environment variable](#environment-variables).
9
+ The following example shows how to set up authentication for a local development
10
+ environment with your user credentials.
20
11
 
21
- ```sh
22
- export GOOGLE_CLOUD_CREDENTIALS=path/to/keyfile.json
23
- ```
24
-
25
- 3. Initialize the client.
12
+ **NOTE:** This method is _not_ recommended for running in production. User credentials
13
+ should be used only during development.
26
14
 
27
- ```ruby
28
- require "google/cloud/data_catalog/lineage/v1"
15
+ 1. [Download and install the Google Cloud CLI](https://cloud.google.com/sdk).
16
+ 2. Set up a local ADC file with your user credentials:
29
17
 
30
- client = ::Google::Cloud::DataCatalog::Lineage::V1::Lineage::Client.new
18
+ ```sh
19
+ gcloud auth application-default login
31
20
  ```
32
21
 
33
- ## Credential Lookup
34
-
35
- The google-cloud-data_catalog-lineage-v1 library aims to make authentication
36
- as simple as possible, and provides several mechanisms to configure your system
37
- without requiring **Service Account Credentials** directly in code.
38
-
39
- **Credentials** are discovered in the following order:
40
-
41
- 1. Specify credentials in method arguments
42
- 2. Specify credentials in configuration
43
- 3. Discover credentials path in environment variables
44
- 4. Discover credentials JSON in environment variables
45
- 5. Discover credentials file in the Cloud SDK's path
46
- 6. Discover GCP credentials
47
-
48
- ### Google Cloud Platform environments
22
+ 3. Write code as if already authenticated.
49
23
 
50
- When running on Google Cloud Platform (GCP), including Google Compute Engine
51
- (GCE), Google Kubernetes Engine (GKE), Google App Engine (GAE), Google Cloud
52
- Functions (GCF) and Cloud Run, **Credentials** are discovered automatically.
53
- Code should be written as if already authenticated.
24
+ For more information about setting up authentication for a local development environment, see
25
+ [Set up Application Default Credentials](https://cloud.google.com/docs/authentication/provide-credentials-adc#local-dev).
54
26
 
55
- ### Environment Variables
27
+ ## Credential Lookup
56
28
 
57
- The **Credentials JSON** can be placed in environment variables instead of
58
- declaring them directly in code. Each service has its own environment variable,
59
- allowing for different service accounts to be used for different services. (See
60
- the READMEs for the individual service gems for details.) The path to the
61
- **Credentials JSON** file can be stored in the environment variable, or the
62
- **Credentials JSON** itself can be stored for environments such as Docker
63
- containers where writing files is difficult or not encouraged.
29
+ The google-cloud-data_catalog-lineage-v1 library provides several mechanisms to configure your system.
30
+ Generally, using Application Default Credentials to facilitate automatic
31
+ credentials discovery is the easist method. But if you need to explicitly specify
32
+ credentials, there are several methods available to you.
64
33
 
65
- The environment variables that google-cloud-data_catalog-lineage-v1
66
- checks for credentials are configured on the service Credentials class (such as
67
- {::Google::Cloud::DataCatalog::Lineage::V1::Lineage::Credentials}):
34
+ Credentials are accepted in the following ways, in the following order or precedence:
68
35
 
69
- * `GOOGLE_CLOUD_CREDENTIALS` - Path to JSON file, or JSON contents
70
- * `GOOGLE_CLOUD_KEYFILE` - Path to JSON file, or JSON contents
71
- * `GOOGLE_APPLICATION_CREDENTIALS` - Path to JSON file
36
+ 1. Credentials specified in method arguments
37
+ 2. Credentials specified in configuration
38
+ 3. Credentials pointed to or included in environment variables
39
+ 4. Credentials found in local ADC file
40
+ 5. Credentials returned by the metadata server for the attached service account (GCP)
72
41
 
73
- ```ruby
74
- require "google/cloud/data_catalog/lineage/v1"
75
-
76
- ENV["GOOGLE_CLOUD_CREDENTIALS"] = "path/to/keyfile.json"
42
+ ### Configuration
77
43
 
78
- client = ::Google::Cloud::DataCatalog::Lineage::V1::Lineage::Client.new
79
- ```
44
+ You can configure a path to a JSON credentials file, either for an individual client object or
45
+ globally, for all client objects. The JSON file can contain credentials created for
46
+ [workload identity federation](https://cloud.google.com/iam/docs/workload-identity-federation),
47
+ [workforce identity federation](https://cloud.google.com/iam/docs/workforce-identity-federation), or a
48
+ [service account key](https://cloud.google.com/docs/authentication/provide-credentials-adc#local-key).
80
49
 
81
- ### Configuration
50
+ Note: Service account keys are a security risk if not managed correctly. You should
51
+ [choose a more secure alternative to service account keys](https://cloud.google.com/docs/authentication#auth-decision-tree)
52
+ whenever possible.
82
53
 
83
- The path to the **Credentials JSON** file can be configured instead of storing
84
- it in an environment variable. Either on an individual client initialization:
54
+ To configure a credentials file for an individual client initialization:
85
55
 
86
56
  ```ruby
87
57
  require "google/cloud/data_catalog/lineage/v1"
88
58
 
89
59
  client = ::Google::Cloud::DataCatalog::Lineage::V1::Lineage::Client.new do |config|
90
- config.credentials = "path/to/keyfile.json"
60
+ config.credentials = "path/to/credentialfile.json"
91
61
  end
92
62
  ```
93
63
 
94
- Or globally for all clients:
64
+ To configure a credentials file globally for all clients:
95
65
 
96
66
  ```ruby
97
67
  require "google/cloud/data_catalog/lineage/v1"
98
68
 
99
69
  ::Google::Cloud::DataCatalog::Lineage::V1::Lineage::Client.configure do |config|
100
- config.credentials = "path/to/keyfile.json"
70
+ config.credentials = "path/to/credentialfile.json"
101
71
  end
102
72
 
103
73
  client = ::Google::Cloud::DataCatalog::Lineage::V1::Lineage::Client.new
104
74
  ```
105
75
 
106
- ### Cloud SDK
76
+ ### Environment Variables
107
77
 
108
- This option allows for an easy way to authenticate during development. If
109
- credentials are not provided in code or in environment variables, then Cloud SDK
110
- credentials are discovered.
78
+ You can also use an environment variable to provide a JSON credentials file.
79
+ The environment variable can contain a path to the credentials file or, for
80
+ environments such as Docker containers where writing files is not encouraged,
81
+ you can include the credentials file itself.
111
82
 
112
- To configure your system for this, simply:
83
+ The JSON file can contain credentials created for
84
+ [workload identity federation](https://cloud.google.com/iam/docs/workload-identity-federation),
85
+ [workforce identity federation](https://cloud.google.com/iam/docs/workforce-identity-federation), or a
86
+ [service account key](https://cloud.google.com/docs/authentication/provide-credentials-adc#local-key).
113
87
 
114
- 1. [Download and install the Cloud SDK](https://cloud.google.com/sdk)
115
- 2. Authenticate using OAuth 2.0 `$ gcloud auth application-default login`
116
- 3. Write code as if already authenticated.
88
+ Note: Service account keys are a security risk if not managed correctly. You should
89
+ [choose a more secure alternative to service account keys](https://cloud.google.com/docs/authentication#auth-decision-tree)
90
+ whenever possible.
91
+
92
+ The environment variables that google-cloud-data_catalog-lineage-v1
93
+ checks for credentials are:
117
94
 
118
- **NOTE:** This is _not_ recommended for running in production. The Cloud SDK
119
- *should* only be used during development.
95
+ * `GOOGLE_CLOUD_CREDENTIALS` - Path to JSON file, or JSON contents
96
+ * `GOOGLE_APPLICATION_CREDENTIALS` - Path to JSON file
120
97
 
121
- ## Creating a Service Account
98
+ ```ruby
99
+ require "google/cloud/data_catalog/lineage/v1"
122
100
 
123
- Google Cloud requires **Service Account Credentials** to
124
- connect to the APIs. You will use the **JSON key file** to
125
- connect to most services with google-cloud-data_catalog-lineage-v1.
101
+ ENV["GOOGLE_APPLICATION_CREDENTIALS"] = "path/to/credentialfile.json"
126
102
 
127
- If you are not running this client within
128
- [Google Cloud Platform environments](#google-cloud-platform-environments), you
129
- need a Google Developers service account.
103
+ client = ::Google::Cloud::DataCatalog::Lineage::V1::Lineage::Client.new
104
+ ```
130
105
 
131
- 1. Visit the [Google Cloud Console](https://console.cloud.google.com/project).
132
- 2. Create a new project or click on an existing project.
133
- 3. Activate the menu in the upper left and select **APIs & Services**. From
134
- here, you will enable the APIs that your application requires.
106
+ ### Local ADC file
135
107
 
136
- *Note: You may need to enable billing in order to use these services.*
108
+ You can set up a local ADC file with your user credentials for authentication during
109
+ development. If credentials are not provided in code or in environment variables,
110
+ then the local ADC credentials are discovered.
137
111
 
138
- 4. Select **Credentials** from the side navigation.
112
+ Follow the steps in [Quickstart](#quickstart) to set up a local ADC file.
139
113
 
140
- Find the "Create credentials" drop down near the top of the page, and select
141
- "Service account" to be guided through downloading a new JSON key file.
114
+ ### Google Cloud Platform environments
142
115
 
143
- If you want to re-use an existing service account, you can easily generate a
144
- new key file. Just select the account you wish to re-use, click the pencil
145
- tool on the right side to edit the service account, select the **Keys** tab,
146
- and then select **Add Key**.
116
+ When running on Google Cloud Platform (GCP), including Google Compute Engine
117
+ (GCE), Google Kubernetes Engine (GKE), Google App Engine (GAE), Google Cloud
118
+ Functions (GCF) and Cloud Run, credentials are retrieved from the attached
119
+ service account automatically. Code should be written as if already authenticated.
147
120
 
148
- The key file you download will be used by this library to authenticate API
149
- requests and should be stored in a secure location.
121
+ For more information, see
122
+ [Set up ADC for Google Cloud services](https://cloud.google.com/docs/authentication/provide-credentials-adc#attached-sa).
data/README.md CHANGED
@@ -33,8 +33,8 @@ In order to use this library, you first need to go through the following steps:
33
33
  require "google/cloud/data_catalog/lineage/v1"
34
34
 
35
35
  client = ::Google::Cloud::DataCatalog::Lineage::V1::Lineage::Client.new
36
- request = ::Google::Cloud::DataCatalog::Lineage::V1::CreateProcessRequest.new # (request fields as keyword arguments...)
37
- response = client.create_process request
36
+ request = ::Google::Cloud::DataCatalog::Lineage::V1::ProcessOpenLineageRunEventRequest.new # (request fields as keyword arguments...)
37
+ response = client.process_open_lineage_run_event request
38
38
  ```
39
39
 
40
40
  View the [Client Library Documentation](https://cloud.google.com/ruby/docs/reference/google-cloud-data_catalog-lineage-v1/latest)
@@ -34,6 +34,9 @@ module Google
34
34
  # example, when table data is based on data from multiple tables.
35
35
  #
36
36
  class Client
37
+ # @private
38
+ DEFAULT_ENDPOINT_TEMPLATE = "datalineage.$UNIVERSE_DOMAIN$"
39
+
37
40
  include Paths
38
41
 
39
42
  # @private
@@ -99,6 +102,15 @@ module Google
99
102
  @config
100
103
  end
101
104
 
105
+ ##
106
+ # The effective universe domain
107
+ #
108
+ # @return [String]
109
+ #
110
+ def universe_domain
111
+ @lineage_stub.universe_domain
112
+ end
113
+
102
114
  ##
103
115
  # Create a new Lineage client object.
104
116
  #
@@ -132,8 +144,9 @@ module Google
132
144
  credentials = @config.credentials
133
145
  # Use self-signed JWT if the endpoint is unchanged from default,
134
146
  # but only if the default endpoint does not have a region prefix.
135
- enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
136
- !@config.endpoint.split(".").first.include?("-")
147
+ enable_self_signed_jwt = @config.endpoint.nil? ||
148
+ (@config.endpoint == Configuration::DEFAULT_ENDPOINT &&
149
+ !@config.endpoint.split(".").first.include?("-"))
137
150
  credentials ||= Credentials.default scope: @config.scope,
138
151
  enable_self_signed_jwt: enable_self_signed_jwt
139
152
  if credentials.is_a?(::String) || credentials.is_a?(::Hash)
@@ -146,12 +159,15 @@ module Google
146
159
  config.credentials = credentials
147
160
  config.quota_project = @quota_project_id
148
161
  config.endpoint = @config.endpoint
162
+ config.universe_domain = @config.universe_domain
149
163
  end
150
164
 
151
165
  @lineage_stub = ::Gapic::ServiceStub.new(
152
166
  ::Google::Cloud::DataCatalog::Lineage::V1::Lineage::Stub,
153
- credentials: credentials,
154
- endpoint: @config.endpoint,
167
+ credentials: credentials,
168
+ endpoint: @config.endpoint,
169
+ endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
170
+ universe_domain: @config.universe_domain,
155
171
  channel_args: @config.channel_args,
156
172
  interceptors: @config.interceptors,
157
173
  channel_pool_config: @config.channel_pool
@@ -167,6 +183,102 @@ module Google
167
183
 
168
184
  # Service calls
169
185
 
186
+ ##
187
+ # Creates new lineage events together with their parents: process and run.
188
+ # Updates the process and run if they already exist.
189
+ # Mapped from Open Lineage specification:
190
+ # https://github.com/OpenLineage/OpenLineage/blob/main/spec/OpenLineage.json.
191
+ #
192
+ # @overload process_open_lineage_run_event(request, options = nil)
193
+ # Pass arguments to `process_open_lineage_run_event` via a request object, either of type
194
+ # {::Google::Cloud::DataCatalog::Lineage::V1::ProcessOpenLineageRunEventRequest} or an equivalent Hash.
195
+ #
196
+ # @param request [::Google::Cloud::DataCatalog::Lineage::V1::ProcessOpenLineageRunEventRequest, ::Hash]
197
+ # A request object representing the call parameters. Required. To specify no
198
+ # parameters, or to keep all the default parameter values, pass an empty Hash.
199
+ # @param options [::Gapic::CallOptions, ::Hash]
200
+ # Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
201
+ #
202
+ # @overload process_open_lineage_run_event(parent: nil, open_lineage: nil, request_id: nil)
203
+ # Pass arguments to `process_open_lineage_run_event` via keyword arguments. Note that at
204
+ # least one keyword argument is required. To specify no parameters, or to keep all
205
+ # the default parameter values, pass an empty Hash as a request object (see above).
206
+ #
207
+ # @param parent [::String]
208
+ # Required. The name of the project and its location that should own the
209
+ # process, run, and lineage event.
210
+ # @param open_lineage [::Google::Protobuf::Struct, ::Hash]
211
+ # Required. OpenLineage message following OpenLineage format:
212
+ # https://github.com/OpenLineage/OpenLineage/blob/main/spec/OpenLineage.json
213
+ # @param request_id [::String]
214
+ # A unique identifier for this request. Restricted to 36 ASCII characters.
215
+ # A random UUID is recommended. This request is idempotent only if a
216
+ # `request_id` is provided.
217
+ #
218
+ # @yield [response, operation] Access the result along with the RPC operation
219
+ # @yieldparam response [::Google::Cloud::DataCatalog::Lineage::V1::ProcessOpenLineageRunEventResponse]
220
+ # @yieldparam operation [::GRPC::ActiveCall::Operation]
221
+ #
222
+ # @return [::Google::Cloud::DataCatalog::Lineage::V1::ProcessOpenLineageRunEventResponse]
223
+ #
224
+ # @raise [::Google::Cloud::Error] if the RPC is aborted.
225
+ #
226
+ # @example Basic example
227
+ # require "google/cloud/data_catalog/lineage/v1"
228
+ #
229
+ # # Create a client object. The client can be reused for multiple calls.
230
+ # client = Google::Cloud::DataCatalog::Lineage::V1::Lineage::Client.new
231
+ #
232
+ # # Create a request. To set request fields, pass in keyword arguments.
233
+ # request = Google::Cloud::DataCatalog::Lineage::V1::ProcessOpenLineageRunEventRequest.new
234
+ #
235
+ # # Call the process_open_lineage_run_event method.
236
+ # result = client.process_open_lineage_run_event request
237
+ #
238
+ # # The returned object is of type Google::Cloud::DataCatalog::Lineage::V1::ProcessOpenLineageRunEventResponse.
239
+ # p result
240
+ #
241
+ def process_open_lineage_run_event request, options = nil
242
+ raise ::ArgumentError, "request must be provided" if request.nil?
243
+
244
+ request = ::Gapic::Protobuf.coerce request, to: ::Google::Cloud::DataCatalog::Lineage::V1::ProcessOpenLineageRunEventRequest
245
+
246
+ # Converts hash and nil to an options object
247
+ options = ::Gapic::CallOptions.new(**options.to_h) if options.respond_to? :to_h
248
+
249
+ # Customize the options with defaults
250
+ metadata = @config.rpcs.process_open_lineage_run_event.metadata.to_h
251
+
252
+ # Set x-goog-api-client and x-goog-user-project headers
253
+ metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
254
+ lib_name: @config.lib_name, lib_version: @config.lib_version,
255
+ gapic_version: ::Google::Cloud::DataCatalog::Lineage::V1::VERSION
256
+ metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
257
+
258
+ header_params = {}
259
+ if request.parent
260
+ header_params["parent"] = request.parent
261
+ end
262
+
263
+ request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
264
+ metadata[:"x-goog-request-params"] ||= request_params_header
265
+
266
+ options.apply_defaults timeout: @config.rpcs.process_open_lineage_run_event.timeout,
267
+ metadata: metadata,
268
+ retry_policy: @config.rpcs.process_open_lineage_run_event.retry_policy
269
+
270
+ options.apply_defaults timeout: @config.timeout,
271
+ metadata: @config.metadata,
272
+ retry_policy: @config.retry_policy
273
+
274
+ @lineage_stub.call_rpc :process_open_lineage_run_event, request, options: options do |response, operation|
275
+ yield response, operation if block_given?
276
+ return response
277
+ end
278
+ rescue ::GRPC::BadStatus => e
279
+ raise ::Google::Cloud::Error.from_error(e)
280
+ end
281
+
170
282
  ##
171
283
  # Creates a new process.
172
284
  #
@@ -739,7 +851,7 @@ module Google
739
851
  # @param options [::Gapic::CallOptions, ::Hash]
740
852
  # Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
741
853
  #
742
- # @overload update_run(run: nil, update_mask: nil)
854
+ # @overload update_run(run: nil, update_mask: nil, allow_missing: nil)
743
855
  # Pass arguments to `update_run` via keyword arguments. Note that at
744
856
  # least one keyword argument is required. To specify no parameters, or to keep all
745
857
  # the default parameter values, pass an empty Hash as a request object (see above).
@@ -754,6 +866,8 @@ module Google
754
866
  # @param update_mask [::Google::Protobuf::FieldMask, ::Hash]
755
867
  # The list of fields to update. Currently not used. The whole message is
756
868
  # updated.
869
+ # @param allow_missing [::Boolean]
870
+ # If set to true and the run is not found, the request creates it.
757
871
  #
758
872
  # @yield [response, operation] Access the result along with the RPC operation
759
873
  # @yieldparam response [::Google::Cloud::DataCatalog::Lineage::V1::Run]
@@ -1497,7 +1611,7 @@ module Google
1497
1611
  # the default parameter values, pass an empty Hash as a request object (see above).
1498
1612
  #
1499
1613
  # @param parent [::String]
1500
- # Required. The project and location you want search in the format `projects/*/locations/*`
1614
+ # Required. The project and location you want search in.
1501
1615
  # @param source [::Google::Cloud::DataCatalog::Lineage::V1::EntityReference, ::Hash]
1502
1616
  # Optional. Send asset information in the **source** field to retrieve all
1503
1617
  # links that lead from the specified asset to downstream assets.
@@ -1619,7 +1733,7 @@ module Google
1619
1733
  # the default parameter values, pass an empty Hash as a request object (see above).
1620
1734
  #
1621
1735
  # @param parent [::String]
1622
- # Required. The project and location you want search in the format `projects/*/locations/*`
1736
+ # Required. The project and location where you want to search.
1623
1737
  # @param links [::Array<::String>]
1624
1738
  # Required. An array of links to check for their associated LineageProcesses.
1625
1739
  #
@@ -1724,23 +1838,23 @@ module Google
1724
1838
  # @example
1725
1839
  #
1726
1840
  # # Modify the global config, setting the timeout for
1727
- # # create_process to 20 seconds,
1841
+ # # process_open_lineage_run_event to 20 seconds,
1728
1842
  # # and all remaining timeouts to 10 seconds.
1729
1843
  # ::Google::Cloud::DataCatalog::Lineage::V1::Lineage::Client.configure do |config|
1730
1844
  # config.timeout = 10.0
1731
- # config.rpcs.create_process.timeout = 20.0
1845
+ # config.rpcs.process_open_lineage_run_event.timeout = 20.0
1732
1846
  # end
1733
1847
  #
1734
1848
  # # Apply the above configuration only to a new client.
1735
1849
  # client = ::Google::Cloud::DataCatalog::Lineage::V1::Lineage::Client.new do |config|
1736
1850
  # config.timeout = 10.0
1737
- # config.rpcs.create_process.timeout = 20.0
1851
+ # config.rpcs.process_open_lineage_run_event.timeout = 20.0
1738
1852
  # end
1739
1853
  #
1740
1854
  # @!attribute [rw] endpoint
1741
- # The hostname or hostname:port of the service endpoint.
1742
- # Defaults to `"datalineage.googleapis.com"`.
1743
- # @return [::String]
1855
+ # A custom service endpoint, as a hostname or hostname:port. The default is
1856
+ # nil, indicating to use the default endpoint in the current universe domain.
1857
+ # @return [::String,nil]
1744
1858
  # @!attribute [rw] credentials
1745
1859
  # Credentials to send with calls. You may provide any of the following types:
1746
1860
  # * (`String`) The path to a service account key file in JSON format
@@ -1786,13 +1900,20 @@ module Google
1786
1900
  # @!attribute [rw] quota_project
1787
1901
  # A separate project against which to charge quota.
1788
1902
  # @return [::String]
1903
+ # @!attribute [rw] universe_domain
1904
+ # The universe domain within which to make requests. This determines the
1905
+ # default endpoint URL. The default value of nil uses the environment
1906
+ # universe (usually the default "googleapis.com" universe).
1907
+ # @return [::String,nil]
1789
1908
  #
1790
1909
  class Configuration
1791
1910
  extend ::Gapic::Config
1792
1911
 
1912
+ # @private
1913
+ # The endpoint specific to the default "googleapis.com" universe. Deprecated.
1793
1914
  DEFAULT_ENDPOINT = "datalineage.googleapis.com"
1794
1915
 
1795
- config_attr :endpoint, DEFAULT_ENDPOINT, ::String
1916
+ config_attr :endpoint, nil, ::String, nil
1796
1917
  config_attr :credentials, nil do |value|
1797
1918
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
1798
1919
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
@@ -1807,6 +1928,7 @@ module Google
1807
1928
  config_attr :metadata, nil, ::Hash, nil
1808
1929
  config_attr :retry_policy, nil, ::Hash, ::Proc, nil
1809
1930
  config_attr :quota_project, nil, ::String, nil
1931
+ config_attr :universe_domain, nil, ::String, nil
1810
1932
 
1811
1933
  # @private
1812
1934
  def initialize parent_config = nil
@@ -1853,6 +1975,11 @@ module Google
1853
1975
  # trigger a retry.
1854
1976
  #
1855
1977
  class Rpcs
1978
+ ##
1979
+ # RPC-specific configuration for `process_open_lineage_run_event`
1980
+ # @return [::Gapic::Config::Method]
1981
+ #
1982
+ attr_reader :process_open_lineage_run_event
1856
1983
  ##
1857
1984
  # RPC-specific configuration for `create_process`
1858
1985
  # @return [::Gapic::Config::Method]
@@ -1936,6 +2063,8 @@ module Google
1936
2063
 
1937
2064
  # @private
1938
2065
  def initialize parent_rpcs = nil
2066
+ process_open_lineage_run_event_config = parent_rpcs.process_open_lineage_run_event if parent_rpcs.respond_to? :process_open_lineage_run_event
2067
+ @process_open_lineage_run_event = ::Gapic::Config::Method.new process_open_lineage_run_event_config
1939
2068
  create_process_config = parent_rpcs.create_process if parent_rpcs.respond_to? :create_process
1940
2069
  @create_process = ::Gapic::Config::Method.new create_process_config
1941
2070
  update_process_config = parent_rpcs.update_process if parent_rpcs.respond_to? :update_process
@@ -27,6 +27,9 @@ module Google
27
27
  module Lineage
28
28
  # Service that implements Longrunning Operations API.
29
29
  class Operations
30
+ # @private
31
+ DEFAULT_ENDPOINT_TEMPLATE = "datalineage.$UNIVERSE_DOMAIN$"
32
+
30
33
  # @private
31
34
  attr_reader :operations_stub
32
35
 
@@ -61,6 +64,15 @@ module Google
61
64
  @config
62
65
  end
63
66
 
67
+ ##
68
+ # The effective universe domain
69
+ #
70
+ # @return [String]
71
+ #
72
+ def universe_domain
73
+ @operations_stub.universe_domain
74
+ end
75
+
64
76
  ##
65
77
  # Create a new Operations client object.
66
78
  #
@@ -91,8 +103,10 @@ module Google
91
103
 
92
104
  @operations_stub = ::Gapic::ServiceStub.new(
93
105
  ::Google::Longrunning::Operations::Stub,
94
- credentials: credentials,
95
- endpoint: @config.endpoint,
106
+ credentials: credentials,
107
+ endpoint: @config.endpoint,
108
+ endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
109
+ universe_domain: @config.universe_domain,
96
110
  channel_args: @config.channel_args,
97
111
  interceptors: @config.interceptors,
98
112
  channel_pool_config: @config.channel_pool
@@ -614,9 +628,9 @@ module Google
614
628
  # end
615
629
  #
616
630
  # @!attribute [rw] endpoint
617
- # The hostname or hostname:port of the service endpoint.
618
- # Defaults to `"datalineage.googleapis.com"`.
619
- # @return [::String]
631
+ # A custom service endpoint, as a hostname or hostname:port. The default is
632
+ # nil, indicating to use the default endpoint in the current universe domain.
633
+ # @return [::String,nil]
620
634
  # @!attribute [rw] credentials
621
635
  # Credentials to send with calls. You may provide any of the following types:
622
636
  # * (`String`) The path to a service account key file in JSON format
@@ -662,13 +676,20 @@ module Google
662
676
  # @!attribute [rw] quota_project
663
677
  # A separate project against which to charge quota.
664
678
  # @return [::String]
679
+ # @!attribute [rw] universe_domain
680
+ # The universe domain within which to make requests. This determines the
681
+ # default endpoint URL. The default value of nil uses the environment
682
+ # universe (usually the default "googleapis.com" universe).
683
+ # @return [::String,nil]
665
684
  #
666
685
  class Configuration
667
686
  extend ::Gapic::Config
668
687
 
688
+ # @private
689
+ # The endpoint specific to the default "googleapis.com" universe. Deprecated.
669
690
  DEFAULT_ENDPOINT = "datalineage.googleapis.com"
670
691
 
671
- config_attr :endpoint, DEFAULT_ENDPOINT, ::String
692
+ config_attr :endpoint, nil, ::String, nil
672
693
  config_attr :credentials, nil do |value|
673
694
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
674
695
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
@@ -683,6 +704,7 @@ module Google
683
704
  config_attr :metadata, nil, ::Hash, nil
684
705
  config_attr :retry_policy, nil, ::Hash, ::Proc, nil
685
706
  config_attr :quota_project, nil, ::String, nil
707
+ config_attr :universe_domain, nil, ::String, nil
686
708
 
687
709
  # @private
688
710
  def initialize parent_config = nil