Source code for airflow.providers.google.cloud.operators.dataplex
# Licensed to the Apache Software Foundation (ASF) under one# or more contributor license agreements. See the NOTICE file# distributed with this work for additional information# regarding copyright ownership. The ASF licenses this file# to you under the Apache License, Version 2.0 (the# "License"); you may not use this file except in compliance# with the License. You may obtain a copy of the License at## http://www.apache.org/licenses/LICENSE-2.0## Unless required by applicable law or agreed to in writing,# software distributed under the License is distributed on an# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY# KIND, either express or implied. See the License for the# specific language governing permissions and limitations# under the License."""This module contains Google Dataplex operators."""from__future__importannotationsimporttimefromcollections.abcimportMutableSequence,Sequencefromfunctoolsimportcached_propertyfromtypingimportTYPE_CHECKING,Anyfromgoogle.protobuf.json_formatimportMessageToDictfromairflow.exceptionsimportAirflowExceptionfromairflow.providers.google.cloud.triggers.datapleximport(DataplexDataProfileJobTrigger,DataplexDataQualityJobTrigger,)ifTYPE_CHECKING:fromgoogle.protobuf.field_mask_pb2importFieldMaskfromairflow.utils.contextimportContextfromgoogle.api_core.exceptionsimportAlreadyExists,GoogleAPICallError,NotFoundfromgoogle.api_core.gapic_v1.methodimportDEFAULT,_MethodDefaultfromgoogle.api_core.retryimportRetry,exponential_sleep_generatorfromgoogle.cloud.dataplex_v1.typesimport(AspectType,Asset,DataScan,DataScanJob,Entry,EntryGroup,EntryType,EntryView,Lake,ListAspectTypesResponse,ListEntriesResponse,ListEntryGroupsResponse,ListEntryTypesResponse,SearchEntriesResponse,Task,Zone,)fromgoogleapiclient.errorsimportHttpErrorfromairflow.configurationimportconffromairflow.providers.google.cloud.hooks.datapleximportAirflowDataQualityScanException,DataplexHookfromairflow.providers.google.cloud.links.datapleximport(DataplexCatalogAspectTypeLink,DataplexCatalogAspectTypesLink,DataplexCatalogEntryGroupLink,DataplexCatalogEntryGroupsLink,DataplexCatalogEntryLink,DataplexCatalogEntryTypeLink,DataplexCatalogEntryTypesLink,DataplexLakeLink,DataplexTaskLink,DataplexTasksLink,)fromairflow.providers.google.cloud.operators.cloud_baseimportGoogleCloudBaseOperator
[docs]classDataplexCreateTaskOperator(GoogleCloudBaseOperator):""" Creates a task resource within a lake. :param project_id: Required. The ID of the Google Cloud project that the task belongs to. :param region: Required. The ID of the Google Cloud region that the task belongs to. :param lake_id: Required. The ID of the Google Cloud lake that the task belongs to. :param body: Required. The Request body contains an instance of Task. :param dataplex_task_id: Required. Task identifier. :param validate_only: Optional. Only validate the request, but do not perform mutations. The default is false. :param api_version: The version of the api that will be requested for example 'v3'. :param retry: A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Additional metadata that is provided to the method. :param gcp_conn_id: The connection ID to use when fetching connection info. :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). :param asynchronous: Flag informing should the Dataplex task be created asynchronously. This is useful for long running creating tasks and waiting on them asynchronously using the DataplexTaskSensor """
[docs]defexecute(self,context:Context)->dict:hook=DataplexHook(gcp_conn_id=self.gcp_conn_id,api_version=self.api_version,impersonation_chain=self.impersonation_chain,)self.log.info("Creating Dataplex task %s",self.dataplex_task_id)DataplexTaskLink.persist(context=context,task_instance=self)try:operation=hook.create_task(project_id=self.project_id,region=self.region,lake_id=self.lake_id,body=self.body,dataplex_task_id=self.dataplex_task_id,validate_only=self.validate_only,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)ifnotself.asynchronous:self.log.info("Waiting for Dataplex task %s to be created",self.dataplex_task_id)task=hook.wait_for_operation(timeout=self.timeout,operation=operation)self.log.info("Task %s created successfully",self.dataplex_task_id)else:is_done=operation.done()self.log.info("Is operation done already? %s",is_done)returnis_doneexceptHttpErroraserr:iferr.resp.statusnotin(409,"409"):raiseself.log.info("Task %s already exists",self.dataplex_task_id)# Wait for task to be readyfortime_to_waitinexponential_sleep_generator(initial=10,maximum=120):task=hook.get_task(project_id=self.project_id,region=self.region,lake_id=self.lake_id,dataplex_task_id=self.dataplex_task_id,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)iftask["state"]!="CREATING":breaktime.sleep(time_to_wait)returnTask.to_dict(task)
[docs]classDataplexDeleteTaskOperator(GoogleCloudBaseOperator):""" Delete the task resource. :param project_id: Required. The ID of the Google Cloud project that the task belongs to. :param region: Required. The ID of the Google Cloud region that the task belongs to. :param lake_id: Required. The ID of the Google Cloud lake that the task belongs to. :param dataplex_task_id: Required. Task identifier. :param api_version: The version of the api that will be requested for example 'v3'. :param retry: A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Additional metadata that is provided to the method. :param gcp_conn_id: The connection ID to use when fetching connection info. :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """
[docs]classDataplexListTasksOperator(GoogleCloudBaseOperator):""" Lists tasks under the given lake. :param project_id: Required. The ID of the Google Cloud project that the task belongs to. :param region: Required. The ID of the Google Cloud region that the task belongs to. :param lake_id: Required. The ID of the Google Cloud lake that the task belongs to. :param page_size: Optional. Maximum number of tasks to return. The service may return fewer than this value. If unspecified, at most 10 tasks will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000. :param page_token: Optional. Page token received from a previous ListZones call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to ListZones must match the call that provided the page token. :param filter: Optional. Filter request. :param order_by: Optional. Order by fields for the result. :param api_version: The version of the api that will be requested for example 'v3'. :param retry: A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Additional metadata that is provided to the method. :param gcp_conn_id: The connection ID to use when fetching connection info. :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """
[docs]defexecute(self,context:Context)->list[dict]:hook=DataplexHook(gcp_conn_id=self.gcp_conn_id,api_version=self.api_version,impersonation_chain=self.impersonation_chain,)self.log.info("Listing Dataplex tasks from lake %s",self.lake_id)DataplexTasksLink.persist(context=context,task_instance=self)tasks=hook.list_tasks(project_id=self.project_id,region=self.region,lake_id=self.lake_id,page_size=self.page_size,page_token=self.page_token,filter=self.filter,order_by=self.order_by,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)return[Task.to_dict(task)fortaskintasks]
[docs]classDataplexGetTaskOperator(GoogleCloudBaseOperator):""" Get task resource. :param project_id: Required. The ID of the Google Cloud project that the task belongs to. :param region: Required. The ID of the Google Cloud region that the task belongs to. :param lake_id: Required. The ID of the Google Cloud lake that the task belongs to. :param dataplex_task_id: Required. Task identifier. :param api_version: The version of the api that will be requested for example 'v3'. :param retry: A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Additional metadata that is provided to the method. :param gcp_conn_id: The connection ID to use when fetching connection info. :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """
[docs]classDataplexCreateLakeOperator(GoogleCloudBaseOperator):""" Creates a lake resource within a lake. :param project_id: Required. The ID of the Google Cloud project that the lake belongs to. :param region: Required. The ID of the Google Cloud region that the lake belongs to. :param lake_id: Required. Lake identifier. :param body: Required. The Request body contains an instance of Lake. :param validate_only: Optional. Only validate the request, but do not perform mutations. The default is false. :param api_version: The version of the api that will be requested for example 'v1'. :param retry: A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Additional metadata that is provided to the method. :param gcp_conn_id: The connection ID to use when fetching connection info. :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). :param asynchronous: Flag informing should the Dataplex lake be created asynchronously. This is useful for long-running creating lakes. """
[docs]defexecute(self,context:Context)->dict:hook=DataplexHook(gcp_conn_id=self.gcp_conn_id,api_version=self.api_version,impersonation_chain=self.impersonation_chain,)self.log.info("Creating Dataplex lake %s",self.lake_id)try:operation=hook.create_lake(project_id=self.project_id,region=self.region,lake_id=self.lake_id,body=self.body,validate_only=self.validate_only,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)ifnotself.asynchronous:self.log.info("Waiting for Dataplex lake %s to be created",self.lake_id)lake=hook.wait_for_operation(timeout=self.timeout,operation=operation)self.log.info("Lake %s created successfully",self.lake_id)else:is_done=operation.done()self.log.info("Is operation done already? %s",is_done)returnis_doneexceptHttpErroraserr:iferr.resp.statusnotin(409,"409"):raiseself.log.info("Lake %s already exists",self.lake_id)# Wait for lake to be readyfortime_to_waitinexponential_sleep_generator(initial=10,maximum=120):lake=hook.get_lake(project_id=self.project_id,region=self.region,lake_id=self.lake_id,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)iflake["state"]!="CREATING":breaktime.sleep(time_to_wait)DataplexLakeLink.persist(context=context,task_instance=self,)returnLake.to_dict(lake)
[docs]classDataplexDeleteLakeOperator(GoogleCloudBaseOperator):""" Delete the lake resource. :param project_id: Required. The ID of the Google Cloud project that the lake belongs to. :param region: Required. The ID of the Google Cloud region that the lake belongs to. :param lake_id: Required. Lake identifier. :param api_version: The version of the api that will be requested for example 'v1'. :param retry: A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Additional metadata that is provided to the method. :param gcp_conn_id: The connection ID to use when fetching connection info. :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """
[docs]defexecute(self,context:Context)->None:hook=DataplexHook(gcp_conn_id=self.gcp_conn_id,api_version=self.api_version,impersonation_chain=self.impersonation_chain,)self.log.info("Deleting Dataplex lake %s",self.lake_id)operation=hook.delete_lake(project_id=self.project_id,region=self.region,lake_id=self.lake_id,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)DataplexLakeLink.persist(context=context,task_instance=self)hook.wait_for_operation(timeout=self.timeout,operation=operation)self.log.info("Dataplex lake %s deleted successfully!",self.lake_id)
[docs]classDataplexCreateOrUpdateDataQualityScanOperator(GoogleCloudBaseOperator):""" Creates a DataScan resource. :param project_id: Required. The ID of the Google Cloud project that the lake belongs to. :param region: Required. The ID of the Google Cloud region that the lake belongs to. :param body: Required. The Request body contains an instance of DataScan. :param data_scan_id: Required. Data Quality scan identifier. :param update_mask: Mask of fields to update. :param api_version: The version of the api that will be requested for example 'v1'. :param retry: A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Additional metadata that is provided to the method. :param gcp_conn_id: The connection ID to use when fetching connection info. :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). :return: Dataplex data scan id """
[docs]defexecute(self,context:Context):hook=DataplexHook(gcp_conn_id=self.gcp_conn_id,api_version=self.api_version,impersonation_chain=self.impersonation_chain,)ifself.update_maskisnotNone:self._update_data_scan(hook)else:self.log.info("Creating Dataplex Data Quality scan %s",self.data_scan_id)try:operation=hook.create_data_scan(project_id=self.project_id,region=self.region,data_scan_id=self.data_scan_id,body=self.body,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)hook.wait_for_operation(timeout=self.timeout,operation=operation)self.log.info("Dataplex Data Quality scan %s created successfully!",self.data_scan_id)exceptAlreadyExists:self._update_data_scan(hook)exceptGoogleAPICallErrorase:raiseAirflowException(f"Error creating Data Quality scan {self.data_scan_id}",e)returnself.data_scan_id
def_update_data_scan(self,hook:DataplexHook):self.log.info("Dataplex Data Quality scan already exists: %s",{self.data_scan_id})operation=hook.update_data_scan(project_id=self.project_id,region=self.region,data_scan_id=self.data_scan_id,body=self.body,update_mask=self.update_mask,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)hook.wait_for_operation(timeout=self.timeout,operation=operation)self.log.info("Dataplex Data Quality scan %s updated successfully!",self.data_scan_id)
[docs]classDataplexGetDataQualityScanOperator(GoogleCloudBaseOperator):""" Gets a DataScan resource. :param project_id: Required. The ID of the Google Cloud project that the lake belongs to. :param region: Required. The ID of the Google Cloud region that the lake belongs to. :param data_scan_id: Required. Data Quality scan identifier. :param api_version: The version of the api that will be requested for example 'v1'. :param retry: A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Additional metadata that is provided to the method. :param gcp_conn_id: The connection ID to use when fetching connection info. :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). :return: Dataplex data scan """
[docs]defexecute(self,context:Context):hook=DataplexHook(gcp_conn_id=self.gcp_conn_id,api_version=self.api_version,impersonation_chain=self.impersonation_chain,)self.log.info("Retrieving the details of Dataplex Data Quality scan %s",self.data_scan_id)data_quality_scan=hook.get_data_scan(project_id=self.project_id,region=self.region,data_scan_id=self.data_scan_id,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)returnDataScan.to_dict(data_quality_scan)
[docs]classDataplexDeleteDataQualityScanOperator(GoogleCloudBaseOperator):""" Deletes a DataScan resource. :param project_id: Required. The ID of the Google Cloud project that the lake belongs to. :param region: Required. The ID of the Google Cloud region that the lake belongs to. :param data_scan_id: Required. Data Quality scan identifier. :param api_version: The version of the api that will be requested for example 'v1'. :param retry: A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Additional metadata that is provided to the method. :param gcp_conn_id: The connection ID to use when fetching connection info. :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). :return: None """
[docs]defexecute(self,context:Context)->None:hook=DataplexHook(gcp_conn_id=self.gcp_conn_id,api_version=self.api_version,impersonation_chain=self.impersonation_chain,)self.log.info("Deleting Dataplex Data Quality Scan: %s",self.data_scan_id)operation=hook.delete_data_scan(project_id=self.project_id,region=self.region,data_scan_id=self.data_scan_id,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)hook.wait_for_operation(timeout=self.timeout,operation=operation)self.log.info("Dataplex Data Quality scan %s deleted successfully!",self.data_scan_id)
[docs]classDataplexRunDataQualityScanOperator(GoogleCloudBaseOperator):""" Runs an on-demand execution of a DataScan. :param project_id: Required. The ID of the Google Cloud project that the lake belongs to. :param region: Required. The ID of the Google Cloud region that the lake belongs to. :param data_scan_id: Required. Data Quality scan identifier. :param api_version: The version of the api that will be requested for example 'v1'. :param retry: A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Additional metadata that is provided to the method. :param gcp_conn_id: The connection ID to use when fetching connection info. :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). :param asynchronous: Flag informing that the Dataplex job should be run asynchronously. This is useful for submitting long-running jobs and waiting on them asynchronously using the DataplexDataQualityJobStatusSensor :param fail_on_dq_failure: If set to true and not all Data Quality scan rules have been passed, an exception is thrown. If set to false and not all Data Quality scan rules have been passed, execution will finish with success. :param result_timeout: Value in seconds for which operator will wait for the Data Quality scan result when the flag `asynchronous = False`. Throws exception if there is no result found after specified amount of seconds. :param polling_interval_seconds: time in seconds between polling for job completion. The value is considered only when running in deferrable mode. Must be greater than 0. :param deferrable: Run operator in the deferrable mode. :return: Dataplex Data Quality scan job id. """
[docs]defexecute(self,context:Context)->str:hook=DataplexHook(gcp_conn_id=self.gcp_conn_id,api_version=self.api_version,impersonation_chain=self.impersonation_chain,)result=hook.run_data_scan(project_id=self.project_id,region=self.region,data_scan_id=self.data_scan_id,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)job_id=result.job.name.split("/")[-1]ifself.deferrable:ifself.asynchronous:raiseAirflowException("Both asynchronous and deferrable parameters were passed. Please, provide only one.")self.defer(trigger=DataplexDataQualityJobTrigger(job_id=job_id,data_scan_id=self.data_scan_id,project_id=self.project_id,region=self.region,gcp_conn_id=self.gcp_conn_id,impersonation_chain=self.impersonation_chain,polling_interval_seconds=self.polling_interval_seconds,),method_name="execute_complete",)ifnotself.asynchronous:job=hook.wait_for_data_scan_job(job_id=job_id,data_scan_id=self.data_scan_id,project_id=self.project_id,region=self.region,result_timeout=self.result_timeout,)ifjob.state==DataScanJob.State.FAILED:raiseAirflowException(f"Data Quality job failed: {job_id}")ifjob.state==DataScanJob.State.SUCCEEDED:ifnotjob.data_quality_result.passed:ifself.fail_on_dq_failure:raiseAirflowDataQualityScanException(f"Data Quality job {job_id} execution failed due to failure of its scanning "f"rules: {self.data_scan_id}")else:self.log.info("Data Quality job executed successfully.")else:self.log.info("Data Quality job execution returned status: %s",job.status)returnjob_id
[docs]defexecute_complete(self,context,event=None)->None:""" Act as a callback for when the trigger fires - returns immediately. Relies on trigger to throw an exception, otherwise it assumes execution was successful. """job_state=event["job_state"]job_id=event["job_id"]ifjob_state==DataScanJob.State.FAILED:raiseAirflowException(f"Job failed:\n{job_id}")ifjob_state==DataScanJob.State.CANCELLED:raiseAirflowException(f"Job was cancelled:\n{job_id}")ifjob_state==DataScanJob.State.SUCCEEDED:job=event["job"]ifnotjob["data_quality_result"]["passed"]:ifself.fail_on_dq_failure:raiseAirflowDataQualityScanException(f"Data Quality job {job_id} execution failed due to failure of its scanning "f"rules: {self.data_scan_id}")else:self.log.info("Data Quality job executed successfully.")returnjob_id
[docs]classDataplexGetDataQualityScanResultOperator(GoogleCloudBaseOperator):""" Gets a Data Scan Job resource. :param project_id: Required. The ID of the Google Cloud project that the lake belongs to. :param region: Required. The ID of the Google Cloud region that the lake belongs to. :param data_scan_id: Required. Data Quality scan identifier. :param job_id: Optional. Data Quality scan job identifier. :param api_version: The version of the api that will be requested for example 'v1'. :param retry: A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: The amount of time, in seconds, to wait for the request to complete. Note that if ``retry`` is specified, the timeout applies to each individual attempt. :param metadata: Additional metadata that is provided to the method. :param gcp_conn_id: The connection ID to use when fetching connection info. :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). :param fail_on_dq_failure: If set to true and not all Data Quality scan rules have been passed, an exception is thrown. If set to false and not all Data Quality scan rules have been passed, execution will finish with success. :param wait_for_results: Flag indicating whether to wait for the result of a job execution or to return the job in its current state. :param result_timeout: Value in seconds for which operator will wait for the Data Quality scan result when the flag `wait_for_results = True`. Throws exception if there is no result found after specified amount of seconds. :param polling_interval_seconds: time in seconds between polling for job completion. The value is considered only when running in deferrable mode. Must be greater than 0. :param deferrable: Run operator in the deferrable mode. :return: Dict representing DataScanJob. When the job completes with a successful status, information about the Data Quality result is available. """
[docs]defexecute(self,context:Context)->dict:hook=DataplexHook(gcp_conn_id=self.gcp_conn_id,api_version=self.api_version,impersonation_chain=self.impersonation_chain,)# fetch the last jobifnotself.job_id:jobs=hook.list_data_scan_jobs(project_id=self.project_id,region=self.region,data_scan_id=self.data_scan_id,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)job_ids=[DataScanJob.to_dict(job)forjobinjobs]ifnotjob_ids:raiseAirflowException("There are no jobs, you should create one before.")job_id=job_ids[0]["name"]self.job_id=job_id.split("/")[-1]ifself.wait_for_results:ifself.deferrable:self.defer(trigger=DataplexDataQualityJobTrigger(job_id=self.job_id,data_scan_id=self.data_scan_id,project_id=self.project_id,region=self.region,gcp_conn_id=self.gcp_conn_id,impersonation_chain=self.impersonation_chain,polling_interval_seconds=self.polling_interval_seconds,),method_name="execute_complete",)else:job=hook.wait_for_data_scan_job(job_id=self.job_id,data_scan_id=self.data_scan_id,project_id=self.project_id,region=self.region,result_timeout=self.result_timeout,)else:job=hook.get_data_scan_job(project_id=self.project_id,region=self.region,job_id=self.job_id,data_scan_id=self.data_scan_id,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)ifjob.state==DataScanJob.State.SUCCEEDED:ifnotjob.data_quality_result.passed:ifself.fail_on_dq_failure:raiseAirflowDataQualityScanException(f"Data Quality job {self.job_id} execution failed due to failure of its scanning "f"rules: {self.data_scan_id}")else:self.log.info("Data Quality job executed successfully")else:self.log.info("Data Quality job execution returned status: %s",job.state)result=DataScanJob.to_dict(job)result["state"]=DataScanJob.State(result["state"]).namereturnresult
[docs]defexecute_complete(self,context,event=None)->None:""" Act as a callback for when the trigger fires - returns immediately. Relies on trigger to throw an exception, otherwise it assumes execution was successful. """job_state=event["job_state"]job_id=event["job_id"]job=event["job"]ifjob_state==DataScanJob.State.FAILED:raiseAirflowException(f"Job failed:\n{job_id}")ifjob_state==DataScanJob.State.CANCELLED:raiseAirflowException(f"Job was cancelled:\n{job_id}")ifjob_state==DataScanJob.State.SUCCEEDED:ifnotjob["data_quality_result"]["passed"]:ifself.fail_on_dq_failure:raiseAirflowDataQualityScanException(f"Data Quality job {self.job_id} execution failed due to failure of its scanning "f"rules: {self.data_scan_id}")else:self.log.info("Data Quality job executed successfully")else:self.log.info("Data Quality job execution returned status: %s",job_state)returnjob
[docs]classDataplexCreateOrUpdateDataProfileScanOperator(GoogleCloudBaseOperator):""" Creates a DataScan Data Profile resource. :param project_id: Required. The ID of the Google Cloud project that the lake belongs to. :param region: Required. The ID of the Google Cloud region that the lake belongs to. :param body: Required. The Request body contains an instance of DataScan. :param data_scan_id: Required. Data Profile scan identifier. :param update_mask: Mask of fields to update. :param api_version: The version of the api that will be requested for example 'v1'. :param retry: A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Additional metadata that is provided to the method. :param gcp_conn_id: The connection ID to use when fetching connection info. :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). :return: Dataplex data profile id """
[docs]defexecute(self,context:Context):hook=DataplexHook(gcp_conn_id=self.gcp_conn_id,api_version=self.api_version,impersonation_chain=self.impersonation_chain,)self.log.info("Creating Dataplex Data Profile scan %s",self.data_scan_id)try:operation=hook.create_data_scan(project_id=self.project_id,region=self.region,data_scan_id=self.data_scan_id,body=self.body,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)hook.wait_for_operation(timeout=self.timeout,operation=operation)self.log.info("Dataplex Data Profile scan %s created successfully!",self.data_scan_id)exceptAlreadyExists:self.log.info("Dataplex Data Profile scan already exists: %s",{self.data_scan_id})operation=hook.update_data_scan(project_id=self.project_id,region=self.region,data_scan_id=self.data_scan_id,body=self.body,update_mask=self.update_mask,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)hook.wait_for_operation(timeout=self.timeout,operation=operation)self.log.info("Dataplex Data Profile scan %s updated successfully!",self.data_scan_id)exceptGoogleAPICallErrorase:raiseAirflowException(f"Error creating Data Profile scan {self.data_scan_id}",e)returnself.data_scan_id
[docs]classDataplexGetDataProfileScanOperator(GoogleCloudBaseOperator):""" Gets a DataScan DataProfile resource. :param project_id: Required. The ID of the Google Cloud project that the lake belongs to. :param region: Required. The ID of the Google Cloud region that the lake belongs to. :param data_scan_id: Required. Data Profile scan identifier. :param api_version: The version of the api that will be requested for example 'v1'. :param retry: A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Additional metadata that is provided to the method. :param gcp_conn_id: The connection ID to use when fetching connection info. :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). :return: Dataplex data profile """
[docs]defexecute(self,context:Context):hook=DataplexHook(gcp_conn_id=self.gcp_conn_id,api_version=self.api_version,impersonation_chain=self.impersonation_chain,)self.log.info("Retrieving the details of Dataplex Data Profile scan %s",self.data_scan_id)data_profile_scan=hook.get_data_scan(project_id=self.project_id,region=self.region,data_scan_id=self.data_scan_id,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)returnDataScan.to_dict(data_profile_scan)
[docs]classDataplexDeleteDataProfileScanOperator(GoogleCloudBaseOperator):""" Deletes a DataScan DataProfile resource. :param project_id: Required. The ID of the Google Cloud project that the lake belongs to. :param region: Required. The ID of the Google Cloud region that the lake belongs to. :param data_scan_id: Required. Data Profile scan identifier. :param api_version: The version of the api that will be requested for example 'v1'. :param retry: A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Additional metadata that is provided to the method. :param gcp_conn_id: The connection ID to use when fetching connection info. :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). :return: None """
[docs]defexecute(self,context:Context)->None:hook=DataplexHook(gcp_conn_id=self.gcp_conn_id,api_version=self.api_version,impersonation_chain=self.impersonation_chain,)self.log.info("Deleting Dataplex Data Profile Scan: %s",self.data_scan_id)operation=hook.delete_data_scan(project_id=self.project_id,region=self.region,data_scan_id=self.data_scan_id,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)hook.wait_for_operation(timeout=self.timeout,operation=operation)self.log.info("Dataplex Data Profile scan %s deleted successfully!",self.data_scan_id)
[docs]classDataplexRunDataProfileScanOperator(GoogleCloudBaseOperator):""" Runs an on-demand execution of a DataScan Data Profile Scan. :param project_id: Required. The ID of the Google Cloud project that the lake belongs to. :param region: Required. The ID of the Google Cloud region that the lake belongs to. :param data_scan_id: Required. Data Profile scan identifier. :param api_version: The version of the api that will be requested for example 'v1'. :param retry: A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Additional metadata that is provided to the method. :param gcp_conn_id: The connection ID to use when fetching connection info. :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). :param asynchronous: Flag informing that the Dataplex job should be run asynchronously. This is useful for submitting long-running jobs and waiting on them asynchronously using the DataplexDataProfileJobStatusSensor :param result_timeout: Value in seconds for which operator will wait for the Data Profile scan result when the flag `asynchronous = False`. Throws exception if there is no result found after specified amount of seconds. :param polling_interval_seconds: time in seconds between polling for job completion. The value is considered only when running in deferrable mode. Must be greater than 0. :param deferrable: Run operator in the deferrable mode. :return: Dataplex Data Profile scan job id. """
[docs]defexecute(self,context:Context)->dict:hook=DataplexHook(gcp_conn_id=self.gcp_conn_id,api_version=self.api_version,impersonation_chain=self.impersonation_chain,)result=hook.run_data_scan(project_id=self.project_id,region=self.region,data_scan_id=self.data_scan_id,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)job_id=result.job.name.split("/")[-1]ifself.deferrable:ifself.asynchronous:raiseAirflowException("Both asynchronous and deferrable parameters were passed. Please, provide only one.")self.defer(trigger=DataplexDataProfileJobTrigger(job_id=job_id,data_scan_id=self.data_scan_id,project_id=self.project_id,region=self.region,gcp_conn_id=self.gcp_conn_id,impersonation_chain=self.impersonation_chain,polling_interval_seconds=self.polling_interval_seconds,),method_name="execute_complete",)ifnotself.asynchronous:job=hook.wait_for_data_scan_job(job_id=job_id,data_scan_id=self.data_scan_id,project_id=self.project_id,region=self.region,result_timeout=self.result_timeout,)ifjob.state==DataScanJob.State.FAILED:raiseAirflowException(f"Data Profile job failed: {job_id}")ifjob.state==DataScanJob.State.SUCCEEDED:self.log.info("Data Profile job executed successfully.")else:self.log.info("Data Profile job execution returned status: %s",job.status)returnjob_id
[docs]defexecute_complete(self,context,event=None)->None:""" Act as a callback for when the trigger fires - returns immediately. Relies on trigger to throw an exception, otherwise it assumes execution was successful. """job_state=event["job_state"]job_id=event["job_id"]ifjob_state==DataScanJob.State.FAILED:raiseAirflowException(f"Job failed:\n{job_id}")ifjob_state==DataScanJob.State.CANCELLED:raiseAirflowException(f"Job was cancelled:\n{job_id}")ifjob_state==DataScanJob.State.SUCCEEDED:self.log.info("Data Profile job executed successfully.")returnjob_id
[docs]classDataplexGetDataProfileScanResultOperator(GoogleCloudBaseOperator):""" Gets a DataScan Data Profile Job resource. :param project_id: Required. The ID of the Google Cloud project that the lake belongs to. :param region: Required. The ID of the Google Cloud region that the lake belongs to. :param data_scan_id: Required. Data Profile scan identifier. :param job_id: Optional. Data Profile scan job identifier. :param api_version: The version of the api that will be requested for example 'v1'. :param retry: A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: The amount of time, in seconds, to wait for the request to complete. Note that if ``retry`` is specified, the timeout applies to each individual attempt. :param metadata: Additional metadata that is provided to the method. :param gcp_conn_id: The connection ID to use when fetching connection info. :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). :param wait_for_results: Flag indicating whether to wait for the result of a job execution or to return the job in its current state. :param result_timeout: Value in seconds for which operator will wait for the Data Profile scan result when the flag `wait_for_results = True`. Throws exception if there is no result found after specified amount of seconds. :return: Dict representing DataScanJob. When the job completes with a successful status, information about the Data Profile result is available. """
[docs]defexecute(self,context:Context)->dict:hook=DataplexHook(gcp_conn_id=self.gcp_conn_id,api_version=self.api_version,impersonation_chain=self.impersonation_chain,)# fetch the last jobifnotself.job_id:jobs=hook.list_data_scan_jobs(project_id=self.project_id,region=self.region,data_scan_id=self.data_scan_id,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)job_ids=[DataScanJob.to_dict(job)forjobinjobs]ifnotjob_ids:raiseAirflowException("There are no jobs, you should create one before.")job_id=job_ids[0]["name"]self.job_id=job_id.split("/")[-1]ifself.wait_for_results:job=hook.wait_for_data_scan_job(job_id=self.job_id,data_scan_id=self.data_scan_id,project_id=self.project_id,region=self.region,result_timeout=self.result_timeout,)else:job=hook.get_data_scan_job(project_id=self.project_id,region=self.region,job_id=self.job_id,data_scan_id=self.data_scan_id,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)ifjob.state==DataScanJob.State.SUCCEEDED:self.log.info("Data Profile job executed successfully")else:self.log.info("Data Profile job execution returned status: %s",job.state)result=DataScanJob.to_dict(job)result["state"]=DataScanJob.State(result["state"]).namereturnresult
[docs]defexecute_complete(self,context,event=None)->None:""" Act as a callback for when the trigger fires - returns immediately. Relies on trigger to throw an exception, otherwise it assumes execution was successful. """job_state=event["job_state"]job_id=event["job_id"]job=event["job"]ifjob_state==DataScanJob.State.FAILED:raiseAirflowException(f"Job failed:\n{job_id}")ifjob_state==DataScanJob.State.CANCELLED:raiseAirflowException(f"Job was cancelled:\n{job_id}")ifjob_state==DataScanJob.State.SUCCEEDED:self.log.info("Data Profile job executed successfully")else:self.log.info("Data Profile job execution returned status: %s",job_state)returnjob
[docs]classDataplexCreateZoneOperator(GoogleCloudBaseOperator):""" Creates a Zone resource within a Lake. :param project_id: Required. The ID of the Google Cloud project that the task belongs to. :param region: Required. The ID of the Google Cloud region that the task belongs to. :param lake_id: Required. The ID of the Google Cloud lake that the task belongs to. :param body: Required. The Request body contains an instance of Zone. :param zone_id: Required. Task identifier. :param api_version: The version of the api that will be requested for example 'v3'. :param retry: A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Additional metadata that is provided to the method. :param gcp_conn_id: The connection ID to use when fetching connection info. :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). :return: Zone """
[docs]defexecute(self,context:Context):hook=DataplexHook(gcp_conn_id=self.gcp_conn_id,api_version=self.api_version,impersonation_chain=self.impersonation_chain,)self.log.info("Creating Dataplex zone %s",self.zone_id)try:operation=hook.create_zone(project_id=self.project_id,region=self.region,lake_id=self.lake_id,body=self.body,zone_id=self.zone_id,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)zone=hook.wait_for_operation(timeout=self.timeout,operation=operation)exceptGoogleAPICallErrorase:raiseAirflowException(f"Error occurred when creating zone {self.zone_id}",e)self.log.info("Dataplex zone %s created successfully!",self.zone_id)returnZone.to_dict(zone)
[docs]classDataplexDeleteZoneOperator(GoogleCloudBaseOperator):""" Deletes a Zone resource. All assets within a zone must be deleted before the zone can be deleted. :param project_id: Required. The ID of the Google Cloud project that the task belongs to. :param region: Required. The ID of the Google Cloud region that the task belongs to. :param lake_id: Required. The ID of the Google Cloud lake that the task belongs to. :param zone_id: Required. Zone identifier. :param api_version: The version of the api that will be requested for example 'v3'. :param retry: A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Additional metadata that is provided to the method. :param gcp_conn_id: The connection ID to use when fetching connection info. :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). :return: None """
[docs]defexecute(self,context:Context):hook=DataplexHook(gcp_conn_id=self.gcp_conn_id,api_version=self.api_version,impersonation_chain=self.impersonation_chain,)self.log.info("Deleting Dataplex zone %s",self.zone_id)operation=hook.delete_zone(project_id=self.project_id,region=self.region,lake_id=self.lake_id,zone_id=self.zone_id,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)hook.wait_for_operation(timeout=self.timeout,operation=operation)self.log.info("Dataplex zone %s deleted successfully!",self.zone_id)
[docs]classDataplexCreateAssetOperator(GoogleCloudBaseOperator):""" Creates an Asset resource. :param project_id: Required. The ID of the Google Cloud project that the task belongs to. :param region: Required. The ID of the Google Cloud region that the task belongs to. :param lake_id: Required. The ID of the Google Cloud lake that the lake belongs to. :param zone_id: Required. Zone identifier. :param asset_id: Required. Asset identifier. :param body: Required. The Request body contains an instance of Asset. :param api_version: The version of the api that will be requested for example 'v3'. :param retry: A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Additional metadata that is provided to the method. :param gcp_conn_id: The connection ID to use when fetching connection info. :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). :return: Asset """
[docs]defexecute(self,context:Context):hook=DataplexHook(gcp_conn_id=self.gcp_conn_id,api_version=self.api_version,impersonation_chain=self.impersonation_chain,)self.log.info("Creating Dataplex asset %s",self.zone_id)try:operation=hook.create_asset(project_id=self.project_id,region=self.region,lake_id=self.lake_id,body=self.body,zone_id=self.zone_id,asset_id=self.asset_id,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)result=hook.wait_for_operation(timeout=self.timeout,operation=operation)exceptGoogleAPICallErrorase:raiseAirflowException(f"Error occurred when creating asset {self.asset_id}",e)self.log.info("Dataplex asset %s created successfully!",self.asset_id)returnAsset.to_dict(result)
[docs]classDataplexDeleteAssetOperator(GoogleCloudBaseOperator):""" Deletes an asset resource. :param project_id: Required. The ID of the Google Cloud project that the task belongs to. :param region: Required. The ID of the Google Cloud region that the task belongs to. :param lake_id: Required. The ID of the Google Cloud lake that the asset belongs to. :param zone_id: Required. Zone identifier. :param asset_id: Required. Asset identifier. :param api_version: The version of the api that will be requested for example 'v3'. :param retry: A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Additional metadata that is provided to the method. :param gcp_conn_id: The connection ID to use when fetching connection info. :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). :return: None """
[docs]classDataplexCatalogBaseOperator(GoogleCloudBaseOperator):""" Base class for all Dataplex Catalog operators. :param project_id: Required. The ID of the Google Cloud project where the service is used. :param location: Required. The ID of the Google Cloud region where the service is used. :param gcp_conn_id: Optional. The connection ID to use to connect to Google Cloud. :param retry: Optional. A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: Optional. The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Optional. Additional metadata that is provided to the method. :param impersonation_chain: Optional. Service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """
[docs]classDataplexCatalogCreateEntryGroupOperator(DataplexCatalogBaseOperator):""" Create an EntryGroup resource. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:DataplexCatalogCreateEntryGroupOperator` :param entry_group_id: Required. EntryGroup identifier. :param entry_group_configuration: Required. EntryGroup configuration. For more details please see API documentation: https://cloud.google.com/dataplex/docs/reference/rest/v1/projects.locations.entryGroups#EntryGroup :param validate_request: Optional. If set, performs request validation, but does not actually execute the request. :param project_id: Required. The ID of the Google Cloud project where the service is used. :param location: Required. The ID of the Google Cloud region where the service is used. :param gcp_conn_id: Optional. The connection ID to use to connect to Google Cloud. :param retry: Optional. A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: Optional. The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Optional. Additional metadata that is provided to the method. :param impersonation_chain: Optional. Service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """
[docs]defexecute(self,context:Context):DataplexCatalogEntryGroupLink.persist(context=context,task_instance=self,)ifself.validate_request:self.log.info("Validating a Create Dataplex Catalog EntryGroup request.")else:self.log.info("Creating a Dataplex Catalog EntryGroup.")try:operation=self.hook.create_entry_group(entry_group_id=self.entry_group_id,entry_group_configuration=self.entry_group_configuration,location=self.location,project_id=self.project_id,validate_only=self.validate_request,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)entry_group=self.hook.wait_for_operation(timeout=self.timeout,operation=operation)exceptAlreadyExists:entry_group=self.hook.get_entry_group(entry_group_id=self.entry_group_id,location=self.location,project_id=self.project_id,)self.log.info("Dataplex Catalog EntryGroup %s already exists.",self.entry_group_id,)result=EntryGroup.to_dict(entry_group)returnresultexceptExceptionasex:raiseAirflowException(ex)else:result=EntryGroup.to_dict(entry_group)ifnotself.validate_requestelseNoneifnotself.validate_request:self.log.info("Dataplex Catalog EntryGroup %s was successfully created.",self.entry_group_id)returnresult
[docs]classDataplexCatalogGetEntryGroupOperator(DataplexCatalogBaseOperator):""" Get an EntryGroup resource. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:DataplexCatalogGetEntryGroupOperator` :param entry_group_id: Required. EntryGroup identifier. :param project_id: Required. The ID of the Google Cloud project where the service is used. :param location: Required. The ID of the Google Cloud region where the service is used. :param gcp_conn_id: Optional. The connection ID to use to connect to Google Cloud. :param retry: Optional. A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: Optional. The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Optional. Additional metadata that is provided to the method. :param impersonation_chain: Optional. Service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """
[docs]defexecute(self,context:Context):DataplexCatalogEntryGroupLink.persist(context=context,task_instance=self,)self.log.info("Retrieving Dataplex Catalog EntryGroup %s.",self.entry_group_id,)try:entry_group=self.hook.get_entry_group(entry_group_id=self.entry_group_id,location=self.location,project_id=self.project_id,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)exceptNotFound:self.log.info("Dataplex Catalog EntryGroup %s not found.",self.entry_group_id,)raiseAirflowException(NotFound)exceptExceptionasex:raiseAirflowException(ex)returnEntryGroup.to_dict(entry_group)
[docs]classDataplexCatalogDeleteEntryGroupOperator(DataplexCatalogBaseOperator):""" Delete an EntryGroup resource. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:DataplexCatalogDeleteEntryGroupOperator` :param entry_group_id: Required. EntryGroup identifier. :param project_id: Required. The ID of the Google Cloud project where the service is used. :param location: Required. The ID of the Google Cloud region where the service is used. :param gcp_conn_id: Optional. The connection ID to use to connect to Google Cloud. :param retry: Optional. A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: Optional. The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Optional. Additional metadata that is provided to the method. :param impersonation_chain: Optional. Service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """
[docs]defexecute(self,context:Context):self.log.info("Deleting Dataplex Catalog EntryGroup %s.",self.entry_group_id,)try:operation=self.hook.delete_entry_group(entry_group_id=self.entry_group_id,location=self.location,project_id=self.project_id,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)self.hook.wait_for_operation(timeout=self.timeout,operation=operation)exceptNotFound:self.log.info("Dataplex Catalog EntryGroup %s not found.",self.entry_group_id,)raiseAirflowException(NotFound)exceptExceptionasex:raiseAirflowException(ex)returnNone
[docs]classDataplexCatalogListEntryGroupsOperator(DataplexCatalogBaseOperator):""" List EntryGroup resources. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:DataplexCatalogListEntryGroupsOperator` :param filter_by: Optional. Filter to apply on the list results. :param order_by: Optional. Fields to order the results by. :param page_size: Optional. Maximum number of EntryGroups to return on the page. :param page_token: Optional. Token to retrieve the next page of results. :param project_id: Required. The ID of the Google Cloud project where the service is used. :param location: Required. The ID of the Google Cloud region where the service is used. :param gcp_conn_id: Optional. The connection ID to use to connect to Google Cloud. :param retry: Optional. A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: Optional. The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Optional. Additional metadata that is provided to the method. :param impersonation_chain: Optional. Service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """
[docs]defexecute(self,context:Context):DataplexCatalogEntryGroupsLink.persist(context=context,task_instance=self,)self.log.info("Listing Dataplex Catalog EntryGroup from location %s.",self.location,)try:entry_group_on_page=self.hook.list_entry_groups(location=self.location,project_id=self.project_id,page_size=self.page_size,page_token=self.page_token,filter_by=self.filter_by,order_by=self.order_by,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)self.log.info("EntryGroup on page: %s",entry_group_on_page)self.xcom_push(context=context,key="entry_group_page",value=ListEntryGroupsResponse.to_dict(entry_group_on_page._response),)exceptExceptionasex:raiseAirflowException(ex)# Constructing list to return EntryGroups in readable formatentry_groups_list=[MessageToDict(entry_group._pb,preserving_proto_field_name=True)forentry_groupinnext(iter(entry_group_on_page.pages)).entry_groups]returnentry_groups_list
[docs]classDataplexCatalogUpdateEntryGroupOperator(DataplexCatalogBaseOperator):""" Update an EntryGroup resource. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:DataplexCatalogUpdateEntryGroupOperator` :param project_id: Required. The ID of the Google Cloud project that the task belongs to. :param location: Required. The ID of the Google Cloud region that the task belongs to. :param update_mask: Optional. Names of fields whose values to overwrite on an entry group. If this parameter is absent or empty, all modifiable fields are overwritten. If such fields are non-required and omitted in the request body, their values are emptied. :param entry_group_id: Required. ID of the EntryGroup to update. :param entry_group_configuration: Required. The updated configuration body of the EntryGroup. For more details please see API documentation: https://cloud.google.com/dataplex/docs/reference/rest/v1/projects.locations.entryGroups#EntryGroup :param validate_only: Optional. The service validates the request without performing any mutations. :param retry: Optional. A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: Optional. The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Optional. Additional metadata that is provided to the method. :param gcp_conn_id: Optional. The connection ID to use when fetching connection info. :param impersonation_chain: Optional. Service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """
[docs]defexecute(self,context:Context):DataplexCatalogEntryGroupLink.persist(context=context,task_instance=self,)ifself.validate_request:self.log.info("Validating an Update Dataplex Catalog EntryGroup request.")else:self.log.info("Updating Dataplex Catalog EntryGroup %s.",self.entry_group_id,)try:operation=self.hook.update_entry_group(location=self.location,project_id=self.project_id,entry_group_id=self.entry_group_id,entry_group_configuration=self.entry_group_configuration,update_mask=self.update_mask,validate_only=self.validate_request,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)entry_group=self.hook.wait_for_operation(timeout=self.timeout,operation=operation)exceptNotFoundasex:self.log.info("Specified EntryGroup was not found.")raiseAirflowException(ex)exceptExceptionasexc:raiseAirflowException(exc)else:result=EntryGroup.to_dict(entry_group)ifnotself.validate_requestelseNoneifnotself.validate_request:self.log.info("EntryGroup %s was successfully updated.",self.entry_group_id)returnresult
[docs]classDataplexCatalogCreateEntryTypeOperator(DataplexCatalogBaseOperator):""" Create an EntryType resource. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:DataplexCatalogCreateEntryTypeOperator` :param entry_type_id: Required. EntryType identifier. :param entry_type_configuration: Required. EntryType configuration. For more details please see API documentation: https://cloud.google.com/dataplex/docs/reference/rest/v1/projects.locations.entryGroups#EntryGroup :param validate_request: Optional. If set, performs request validation, but does not actually execute the request. :param project_id: Required. The ID of the Google Cloud project where the service is used. :param location: Required. The ID of the Google Cloud region where the service is used. :param gcp_conn_id: Optional. The connection ID to use to connect to Google Cloud. :param retry: Optional. A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: Optional. The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Optional. Additional metadata that is provided to the method. :param impersonation_chain: Optional. Service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """
[docs]defexecute(self,context:Context):DataplexCatalogEntryTypeLink.persist(context=context,task_instance=self,)ifself.validate_request:self.log.info("Validating a Create Dataplex Catalog EntryType request.")else:self.log.info("Creating a Dataplex Catalog EntryType.")try:operation=self.hook.create_entry_type(entry_type_id=self.entry_type_id,entry_type_configuration=self.entry_type_configuration,location=self.location,project_id=self.project_id,validate_only=self.validate_request,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)entry_type=self.hook.wait_for_operation(timeout=self.timeout,operation=operation)exceptAlreadyExists:entry_type=self.hook.get_entry_type(entry_type_id=self.entry_type_id,location=self.location,project_id=self.project_id,)self.log.info("Dataplex Catalog EntryType %s already exists.",self.entry_type_id,)result=EntryType.to_dict(entry_type)returnresultexceptExceptionasex:raiseAirflowException(ex)else:result=EntryType.to_dict(entry_type)ifnotself.validate_requestelseNoneifnotself.validate_request:self.log.info("Dataplex Catalog EntryType %s was successfully created.",self.entry_type_id)returnresult
[docs]classDataplexCatalogGetEntryTypeOperator(DataplexCatalogBaseOperator):""" Get an EntryType resource. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:DataplexCatalogGetEntryTypeOperator` :param entry_type_id: Required. EntryType identifier. :param project_id: Required. The ID of the Google Cloud project where the service is used. :param location: Required. The ID of the Google Cloud region where the service is used. :param gcp_conn_id: Optional. The connection ID to use to connect to Google Cloud. :param retry: Optional. A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: Optional. The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Optional. Additional metadata that is provided to the method. :param impersonation_chain: Optional. Service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """
[docs]defexecute(self,context:Context):DataplexCatalogEntryTypeLink.persist(context=context,task_instance=self,)self.log.info("Retrieving Dataplex Catalog EntryType %s.",self.entry_type_id,)try:entry_type=self.hook.get_entry_type(entry_type_id=self.entry_type_id,location=self.location,project_id=self.project_id,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)exceptNotFound:self.log.info("Dataplex Catalog EntryType %s not found.",self.entry_type_id,)raiseAirflowException(NotFound)exceptExceptionasex:raiseAirflowException(ex)returnEntryType.to_dict(entry_type)
[docs]classDataplexCatalogDeleteEntryTypeOperator(DataplexCatalogBaseOperator):""" Delete an EntryType resource. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:DataplexCatalogDeleteEntryTypeOperator` :param entry_type_id: Required. EntryType identifier. :param project_id: Required. The ID of the Google Cloud project where the service is used. :param location: Required. The ID of the Google Cloud region where the service is used. :param gcp_conn_id: Optional. The connection ID to use to connect to Google Cloud. :param retry: Optional. A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: Optional. The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Optional. Additional metadata that is provided to the method. :param impersonation_chain: Optional. Service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """
[docs]defexecute(self,context:Context):self.log.info("Deleting Dataplex Catalog EntryType %s.",self.entry_type_id,)try:operation=self.hook.delete_entry_type(entry_type_id=self.entry_type_id,location=self.location,project_id=self.project_id,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)self.hook.wait_for_operation(timeout=self.timeout,operation=operation)exceptNotFound:self.log.info("Dataplex Catalog EntryType %s not found.",self.entry_type_id,)raiseAirflowException(NotFound)exceptExceptionasex:raiseAirflowException(ex)returnNone
[docs]classDataplexCatalogListEntryTypesOperator(DataplexCatalogBaseOperator):""" List EntryType resources. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:DataplexCatalogListEntryTypesOperator` :param filter_by: Optional. Filter to apply on the list results. :param order_by: Optional. Fields to order the results by. :param page_size: Optional. Maximum number of EntryTypes to return on the page. :param page_token: Optional. Token to retrieve the next page of results. :param project_id: Required. The ID of the Google Cloud project where the service is used. :param location: Required. The ID of the Google Cloud region where the service is used. :param gcp_conn_id: Optional. The connection ID to use to connect to Google Cloud. :param retry: Optional. A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: Optional. The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Optional. Additional metadata that is provided to the method. :param impersonation_chain: Optional. Service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """
[docs]defexecute(self,context:Context):DataplexCatalogEntryTypesLink.persist(context=context,task_instance=self,)self.log.info("Listing Dataplex Catalog EntryType from location %s.",self.location,)try:entry_type_on_page=self.hook.list_entry_types(location=self.location,project_id=self.project_id,page_size=self.page_size,page_token=self.page_token,filter_by=self.filter_by,order_by=self.order_by,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)self.log.info("EntryType on page: %s",entry_type_on_page)self.xcom_push(context=context,key="entry_type_page",value=ListEntryTypesResponse.to_dict(entry_type_on_page._response),)exceptExceptionasex:raiseAirflowException(ex)# Constructing list to return EntryTypes in readable formatentry_types_list=[MessageToDict(entry_type._pb,preserving_proto_field_name=True)forentry_typeinnext(iter(entry_type_on_page.pages)).entry_types]returnentry_types_list
[docs]classDataplexCatalogUpdateEntryTypeOperator(DataplexCatalogBaseOperator):""" Update an EntryType resource. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:DataplexCatalogUpdateEntryTypeOperator` :param project_id: Required. The ID of the Google Cloud project that the task belongs to. :param location: Required. The ID of the Google Cloud region that the task belongs to. :param update_mask: Optional. Names of fields whose values to overwrite on an entry group. If this parameter is absent or empty, all modifiable fields are overwritten. If such fields are non-required and omitted in the request body, their values are emptied. :param entry_type_id: Required. ID of the EntryType to update. :param entry_type_configuration: Required. The updated configuration body of the EntryType. For more details please see API documentation: https://cloud.google.com/dataplex/docs/reference/rest/v1/projects.locations.entryGroups#EntryGroup :param validate_only: Optional. The service validates the request without performing any mutations. :param retry: Optional. A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: Optional. The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Optional. Additional metadata that is provided to the method. :param gcp_conn_id: Optional. The connection ID to use when fetching connection info. :param impersonation_chain: Optional. Service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """
[docs]defexecute(self,context:Context):DataplexCatalogEntryTypeLink.persist(context=context,task_instance=self,)ifself.validate_request:self.log.info("Validating an Update Dataplex Catalog EntryType request.")else:self.log.info("Updating Dataplex Catalog EntryType %s.",self.entry_type_id,)try:operation=self.hook.update_entry_type(location=self.location,project_id=self.project_id,entry_type_id=self.entry_type_id,entry_type_configuration=self.entry_type_configuration,update_mask=self.update_mask,validate_only=self.validate_request,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)entry_type=self.hook.wait_for_operation(timeout=self.timeout,operation=operation)exceptNotFoundasex:self.log.info("Specified EntryType was not found.")raiseAirflowException(ex)exceptExceptionasexc:raiseAirflowException(exc)else:result=EntryType.to_dict(entry_type)ifnotself.validate_requestelseNoneifnotself.validate_request:self.log.info("EntryType %s was successfully updated.",self.entry_type_id)returnresult
[docs]classDataplexCatalogCreateAspectTypeOperator(DataplexCatalogBaseOperator):""" Create an AspectType resource. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:DataplexCatalogCreateAspectTypeOperator` :param aspect_type_id: Required. AspectType identifier. :param aspect_type_configuration: Required. AspectType configuration. For more details please see API documentation: https://cloud.google.com/dataplex/docs/reference/rest/v1/projects.locations.aspectTypes#AspectType :param validate_request: Optional. If set, performs request validation, but does not actually execute the request. :param project_id: Required. The ID of the Google Cloud project where the service is used. :param location: Required. The ID of the Google Cloud region where the service is used. :param gcp_conn_id: Optional. The connection ID to use to connect to Google Cloud. :param retry: Optional. A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: Optional. The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Optional. Additional metadata that is provided to the method. :param impersonation_chain: Optional. Service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """
[docs]defexecute(self,context:Context):DataplexCatalogAspectTypeLink.persist(context=context,task_instance=self,)ifself.validate_request:self.log.info("Validating a Create Dataplex Catalog AspectType request.")else:self.log.info("Creating a Dataplex Catalog AspectType.")try:operation=self.hook.create_aspect_type(aspect_type_id=self.aspect_type_id,aspect_type_configuration=self.aspect_type_configuration,location=self.location,project_id=self.project_id,validate_only=self.validate_request,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)aspect_type=self.hook.wait_for_operation(timeout=self.timeout,operation=operation)exceptAlreadyExists:aspect_type=self.hook.get_aspect_type(aspect_type_id=self.aspect_type_id,location=self.location,project_id=self.project_id,)self.log.info("Dataplex Catalog AspectType %s already exists.",self.aspect_type_id,)result=AspectType.to_dict(aspect_type)returnresultexceptExceptionasex:raiseAirflowException(ex)else:result=AspectType.to_dict(aspect_type)ifnotself.validate_requestelseNoneifnotself.validate_request:self.log.info("Dataplex Catalog AspectType %s was successfully created.",self.aspect_type_id)returnresult
[docs]classDataplexCatalogGetAspectTypeOperator(DataplexCatalogBaseOperator):""" Get an AspectType resource. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:DataplexCatalogGetAspectTypeOperator` :param aspect_type_id: Required. AspectType identifier. :param project_id: Required. The ID of the Google Cloud project where the service is used. :param location: Required. The ID of the Google Cloud region where the service is used. :param gcp_conn_id: Optional. The connection ID to use to connect to Google Cloud. :param retry: Optional. A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: Optional. The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Optional. Additional metadata that is provided to the method. :param impersonation_chain: Optional. Service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """
[docs]defexecute(self,context:Context):DataplexCatalogAspectTypeLink.persist(context=context,task_instance=self,)self.log.info("Retrieving Dataplex Catalog AspectType %s.",self.aspect_type_id,)try:aspect_type=self.hook.get_aspect_type(aspect_type_id=self.aspect_type_id,location=self.location,project_id=self.project_id,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)exceptNotFound:self.log.info("Dataplex Catalog AspectType %s not found.",self.aspect_type_id,)raiseAirflowException(NotFound)exceptExceptionasex:raiseAirflowException(ex)returnAspectType.to_dict(aspect_type)
[docs]classDataplexCatalogListAspectTypesOperator(DataplexCatalogBaseOperator):""" List AspectType resources. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:DataplexCatalogListAspectTypesOperator` :param filter_by: Optional. Filter to apply on the list results. :param order_by: Optional. Fields to order the results by. :param page_size: Optional. Maximum number of AspectTypes to return on the page. :param page_token: Optional. Token to retrieve the next page of results. :param project_id: Required. The ID of the Google Cloud project where the service is used. :param location: Required. The ID of the Google Cloud region where the service is used. :param gcp_conn_id: Optional. The connection ID to use to connect to Google Cloud. :param retry: Optional. A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: Optional. The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Optional. Additional metadata that is provided to the method. :param impersonation_chain: Optional. Service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """
[docs]defexecute(self,context:Context):DataplexCatalogAspectTypesLink.persist(context=context,task_instance=self,)self.log.info("Listing Dataplex Catalog AspectType from location %s.",self.location,)try:aspect_type_on_page=self.hook.list_aspect_types(location=self.location,project_id=self.project_id,page_size=self.page_size,page_token=self.page_token,filter_by=self.filter_by,order_by=self.order_by,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)self.log.info("AspectType on page: %s",aspect_type_on_page)self.xcom_push(context=context,key="aspect_type_page",value=ListAspectTypesResponse.to_dict(aspect_type_on_page._response),)exceptExceptionasex:raiseAirflowException(ex)# Constructing list to return AspectTypes in readable formataspect_types_list=[MessageToDict(aspect_type._pb,preserving_proto_field_name=True)foraspect_typeinnext(iter(aspect_type_on_page.pages)).aspect_types]returnaspect_types_list
[docs]classDataplexCatalogUpdateAspectTypeOperator(DataplexCatalogBaseOperator):""" Update an AspectType resource. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:DataplexCatalogUpdateAspectTypeOperator` :param project_id: Required. The ID of the Google Cloud project that the task belongs to. :param location: Required. The ID of the Google Cloud region that the task belongs to. :param update_mask: Optional. Names of fields whose values to overwrite on an entry group. If this parameter is absent or empty, all modifiable fields are overwritten. If such fields are non-required and omitted in the request body, their values are emptied. :param aspect_type_id: Required. ID of the AspectType to update. :param aspect_type_configuration: Required. The updated configuration body of the AspectType. For more details please see API documentation: https://cloud.google.com/dataplex/docs/reference/rest/v1/projects.locations.aspectTypes#AspectType :param validate_only: Optional. The service validates the request without performing any mutations. :param retry: Optional. A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: Optional. The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Optional. Additional metadata that is provided to the method. :param gcp_conn_id: Optional. The connection ID to use when fetching connection info. :param impersonation_chain: Optional. Service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """
[docs]defexecute(self,context:Context):DataplexCatalogAspectTypeLink.persist(context=context,task_instance=self,)ifself.validate_request:self.log.info("Validating an Update Dataplex Catalog AspectType request.")else:self.log.info("Updating Dataplex Catalog AspectType %s.",self.aspect_type_id,)try:operation=self.hook.update_aspect_type(location=self.location,project_id=self.project_id,aspect_type_id=self.aspect_type_id,aspect_type_configuration=self.aspect_type_configuration,update_mask=self.update_mask,validate_only=self.validate_request,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)aspect_type=self.hook.wait_for_operation(timeout=self.timeout,operation=operation)exceptNotFoundasex:self.log.info("Specified AspectType was not found.")raiseAirflowException(ex)exceptExceptionasexc:raiseAirflowException(exc)else:result=AspectType.to_dict(aspect_type)ifnotself.validate_requestelseNoneifnotself.validate_request:self.log.info("AspectType %s was successfully updated.",self.aspect_type_id)returnresult
[docs]classDataplexCatalogDeleteAspectTypeOperator(DataplexCatalogBaseOperator):""" Delete an AspectType resource. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:DataplexCatalogDeleteAspectTypeOperator` :param aspect_type_id: Required. AspectType identifier. :param project_id: Required. The ID of the Google Cloud project where the service is used. :param location: Required. The ID of the Google Cloud region where the service is used. :param gcp_conn_id: Optional. The connection ID to use to connect to Google Cloud. :param retry: Optional. A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: Optional. The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Optional. Additional metadata that is provided to the method. :param impersonation_chain: Optional. Service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """
[docs]defexecute(self,context:Context):self.log.info("Deleting Dataplex Catalog AspectType %s.",self.aspect_type_id,)try:operation=self.hook.delete_aspect_type(aspect_type_id=self.aspect_type_id,location=self.location,project_id=self.project_id,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)self.hook.wait_for_operation(timeout=self.timeout,operation=operation)exceptNotFound:self.log.info("Dataplex Catalog AspectType %s not found.",self.aspect_type_id,)raiseAirflowException(NotFound)exceptExceptionasex:raiseAirflowException(ex)returnNone
[docs]classDataplexCatalogCreateEntryOperator(DataplexCatalogBaseOperator):""" Create an Entry resource. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:DataplexCatalogCreateEntryOperator` :param entry_id: Required. Entry identifier. It has to be unique within an Entry Group. Entries corresponding to Google Cloud resources use an Entry ID format based on `full resource names <https://cloud.google.com/apis/design/resource_names#full_resource_name>`__. The format is a full resource name of the resource without the prefix double slashes in the API service name part of the full resource name. This allows retrieval of entries using their associated resource name. For example, if the full resource name of a resource is ``//library.googleapis.com/shelves/shelf1/books/book2``, then the suggested entry_id is ``library.googleapis.com/shelves/shelf1/books/book2``. It is also suggested to follow the same convention for entries corresponding to resources from providers or systems other than Google Cloud. The maximum size of the field is 4000 characters. :param entry_group_id: Required. EntryGroup resource name to which created Entry will belong to. :param entry_configuration: Required. Entry configuration. For more details please see API documentation: https://cloud.google.com/dataplex/docs/reference/rest/v1/projects.locations.entryGroups.entries#Entry :param project_id: Required. The ID of the Google Cloud project where the service is used. :param location: Required. The ID of the Google Cloud region where the service is used. :param gcp_conn_id: Optional. The connection ID to use to connect to Google Cloud. :param retry: Optional. A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: Optional. The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Optional. Additional metadata that is provided to the method. :param impersonation_chain: Optional. Service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """
[docs]classDataplexCatalogGetEntryOperator(DataplexCatalogBaseOperator):""" Get an Entry resource. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:DataplexCatalogGetEntryOperator` :param entry_id: Required. Entry identifier. It has to be unique within an Entry Group. Entries corresponding to Google Cloud resources use an Entry ID format based on `full resource names <https://cloud.google.com/apis/design/resource_names#full_resource_name>`__. The format is a full resource name of the resource without the prefix double slashes in the API service name part of the full resource name. This allows retrieval of entries using their associated resource name. For example, if the full resource name of a resource is ``//library.googleapis.com/shelves/shelf1/books/book2``, then the suggested entry_id is ``library.googleapis.com/shelves/shelf1/books/book2``. It is also suggested to follow the same convention for entries corresponding to resources from providers or systems other than Google Cloud. The maximum size of the field is 4000 characters. :param entry_group_id: Required. EntryGroup resource name to which created Entry will belong to. :param project_id: Required. The ID of the Google Cloud project where the service is used. :param location: Required. The ID of the Google Cloud region where the service is used. :param view: Optional. View to control which parts of an Entry the service should return. :param aspect_types: Optional. Limits the aspects returned to the provided aspect types. It only works for CUSTOM view. :param paths: Optional. Limits the aspects returned to those associated with the provided paths within the Entry. It only works for CUSTOM view. :param gcp_conn_id: Optional. The connection ID to use to connect to Google Cloud. :param retry: Optional. A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: Optional. The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Optional. Additional metadata that is provided to the method. :param impersonation_chain: Optional. Service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """
[docs]defexecute(self,context:Context):DataplexCatalogEntryLink.persist(context=context,task_instance=self,)self.log.info("Retrieving Dataplex Catalog Entry %s.",self.entry_id,)try:entry=self.hook.get_entry(entry_id=self.entry_id,entry_group_id=self.entry_group_id,view=self.view,aspect_types=self.aspect_types,paths=self.paths,location=self.location,project_id=self.project_id,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)exceptNotFound:self.log.info("Dataplex Catalog Entry %s not found.",self.entry_id,)raiseAirflowException(NotFound)exceptExceptionasex:raiseAirflowException(ex)returnEntry.to_dict(entry)
[docs]classDataplexCatalogListEntriesOperator(DataplexCatalogBaseOperator):r""" List Entry resources. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:DataplexCatalogListEntriesOperator` :param entry_group_id: Required. EntryGroup resource name to which created Entry belongs to. :param filter_by: Optional. A filter on the entries to return. Filters are case-sensitive. You can filter the request by the following fields: - entry_type - entry_source.display_name The comparison operators are =, !=, <, >, <=, >=. The service compares strings according to lexical order. You can use the logical operators AND, OR, NOT in the filter. You can use Wildcard "*", but for entry_type you need to provide the full project id or number. Example filter expressions: - "entry_source.display_name=AnExampleDisplayName" - "entry_type=projects/example-project/locations/global/entryTypes/example-entry_type" - "entry_type=projects/example-project/locations/us/entryTypes/a\* OR entry_type=projects/another-project/locations/\*" - "NOT entry_source.display_name=AnotherExampleDisplayName". :param page_size: Optional. Number of items to return per page. If there are remaining results, the service returns a next_page_token. If unspecified, the service returns at most 10 Entries. The maximum value is 100; values above 100 will be coerced to 100. :param page_token: Optional. Page token received from a previous ``ListEntries`` call. Provide this to retrieve the subsequent page. :param project_id: Required. The ID of the Google Cloud project where the service is used. :param location: Required. The ID of the Google Cloud region where the service is used. :param gcp_conn_id: Optional. The connection ID to use to connect to Google Cloud. :param retry: Optional. A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: Optional. The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Optional. Additional metadata that is provided to the method. :param impersonation_chain: Optional. Service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """
[docs]defexecute(self,context:Context):DataplexCatalogEntryGroupLink.persist(context=context,task_instance=self,)self.log.info("Listing Dataplex Catalog Entry from location %s.",self.location,)try:entries_on_page=self.hook.list_entries(entry_group_id=self.entry_group_id,location=self.location,project_id=self.project_id,page_size=self.page_size,page_token=self.page_token,filter_by=self.filter_by,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)self.log.info("Entries on page: %s",entries_on_page)self.xcom_push(context=context,key="entry_page",value=ListEntriesResponse.to_dict(entries_on_page._response),)exceptExceptionasex:raiseAirflowException(ex)# Constructing list to return Entries in readable formatentries_list=[MessageToDict(entry._pb,preserving_proto_field_name=True)forentryinnext(iter(entries_on_page.pages)).entries]returnentries_list
[docs]classDataplexCatalogSearchEntriesOperator(DataplexCatalogBaseOperator):""" Search for Entries matching the given query and scope. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:DataplexCatalogSearchEntriesOperator` :param query: Required. The query against which entries in scope should be matched. The query syntax is defined in `Search syntax for Dataplex Catalog <https://cloud.google.com/dataplex/docs/search-syntax>`__. :param order_by: Optional. Specifies the ordering of results. Supported values are: - ``relevance`` (default) - ``last_modified_timestamp`` - ``last_modified_timestamp asc`` :param scope: Optional. The scope under which the search should be operating. It must either be ``organizations/<org_id>`` or ``projects/<project_ref>``. If it is unspecified, it defaults to the organization where the project provided in ``name`` is located. :param page_size: Optional. Number of items to return per page. If there are remaining results, the service returns a next_page_token. If unspecified, the service returns at most 10 Entries. The maximum value is 100; values above 100 will be coerced to 100. :param page_token: Optional. Page token received from a previous ``ListEntries`` call. Provide this to retrieve the subsequent page. :param project_id: Required. The ID of the Google Cloud project where the service is used. :param location: Required. The ID of the Google Cloud region where the service is used. :param gcp_conn_id: Optional. The connection ID to use to connect to Google Cloud. :param retry: Optional. A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: Optional. The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Optional. Additional metadata that is provided to the method. :param impersonation_chain: Optional. Service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """
[docs]defexecute(self,context:Context):self.log.info("Listing Entries from location %s matching the given query %s and scope %s.",self.location,self.query,self.scope,)try:entries_on_page=self.hook.search_entries(query=self.query,location=self.location,project_id=self.project_id,page_size=self.page_size,page_token=self.page_token,order_by=self.order_by,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)self.log.info("Entries on page: %s",entries_on_page)self.xcom_push(context=context,key="entry_page",value=SearchEntriesResponse.to_dict(entries_on_page._response),)exceptExceptionasex:raiseAirflowException(ex)# Constructing list to return Entries in readable formatentries_list=[MessageToDict(entry._pb,preserving_proto_field_name=True)forentryinnext(iter(entries_on_page.pages)).results]returnentries_list
[docs]classDataplexCatalogLookupEntryOperator(DataplexCatalogBaseOperator):""" Look up a single Entry by name using the permission on the source system. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:DataplexCatalogLookupEntryOperator` :param entry_id: Required. Entry identifier. It has to be unique within an Entry Group. Entries corresponding to Google Cloud resources use an Entry ID format based on `full resource names <https://cloud.google.com/apis/design/resource_names#full_resource_name>`__. The format is a full resource name of the resource without the prefix double slashes in the API service name part of the full resource name. This allows retrieval of entries using their associated resource name. For example, if the full resource name of a resource is ``//library.googleapis.com/shelves/shelf1/books/book2``, then the suggested entry_id is ``library.googleapis.com/shelves/shelf1/books/book2``. It is also suggested to follow the same convention for entries corresponding to resources from providers or systems other than Google Cloud. The maximum size of the field is 4000 characters. :param entry_group_id: Required. EntryGroup resource name to which created Entry will belong to. :param project_id: Required. The ID of the Google Cloud project where the service is used. :param location: Required. The ID of the Google Cloud region where the service is used. :param view: Optional. View to control which parts of an Entry the service should return. :param aspect_types: Optional. Limits the aspects returned to the provided aspect types. It only works for CUSTOM view. :param paths: Optional. Limits the aspects returned to those associated with the provided paths within the Entry. It only works for CUSTOM view. :param gcp_conn_id: Optional. The connection ID to use to connect to Google Cloud. :param retry: Optional. A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: Optional. The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Optional. Additional metadata that is provided to the method. :param impersonation_chain: Optional. Service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """
[docs]defexecute(self,context:Context):DataplexCatalogEntryLink.persist(context=context,task_instance=self,)self.log.info("Looking for Dataplex Catalog Entry %s.",self.entry_id,)try:entry=self.hook.lookup_entry(entry_id=self.entry_id,entry_group_id=self.entry_group_id,view=self.view,aspect_types=self.aspect_types,paths=self.paths,location=self.location,project_id=self.project_id,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)exceptNotFound:self.log.info("Dataplex Catalog Entry %s not found.",self.entry_id,)raiseAirflowException(NotFound)exceptExceptionasex:raiseAirflowException(ex)returnEntry.to_dict(entry)
[docs]classDataplexCatalogUpdateEntryOperator(DataplexCatalogBaseOperator):""" Update an Entry resource. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:DataplexCatalogUpdateEntryOperator` :param project_id: Required. The ID of the Google Cloud project that the task belongs to. :param location: Required. The ID of the Google Cloud region that the task belongs to. :param entry_id: Required. Entry identifier. It has to be unique within an Entry Group. Entries corresponding to Google Cloud resources use an Entry ID format based on `full resource names <https://cloud.google.com/apis/design/resource_names#full_resource_name>`__. The format is a full resource name of the resource without the prefix double slashes in the API service name part of the full resource name. This allows retrieval of entries using their associated resource name. For example, if the full resource name of a resource is ``//library.googleapis.com/shelves/shelf1/books/book2``, then the suggested entry_id is ``library.googleapis.com/shelves/shelf1/books/book2``. It is also suggested to follow the same convention for entries corresponding to resources from providers or systems other than Google Cloud. The maximum size of the field is 4000 characters. :param entry_group_id: Required. EntryGroup resource name to which created Entry belongs to. :param entry_configuration: Required. The updated configuration body of the Entry. :param allow_missing: Optional. If set to true and entry doesn't exist, the service will create it. :param delete_missing_aspects: Optional. If set to true and the aspect_keys specify aspect ranges, the service deletes any existing aspects from that range that weren't provided in the request. :param aspect_keys: Optional. The map keys of the Aspects which the service should modify. It supports the following syntax: - ``<aspect_type_reference>`` - matches an aspect of the given type and empty path. - ``<aspect_type_reference>@path`` - matches an aspect of the given type and specified path. For example, to attach an aspect to a field that is specified by the ``schema`` aspect, the path should have the format ``Schema.<field_name>``. - ``<aspect_type_reference>@*`` - matches aspects of the given type for all paths. - ``*@path`` - matches aspects of all types on the given path. The service will not remove existing aspects matching the syntax unless ``delete_missing_aspects`` is set to true. If this field is left empty, the service treats it as specifying exactly those Aspects present in the request. :param retry: Optional. A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: Optional. The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Optional. Additional metadata that is provided to the method. :param gcp_conn_id: Optional. The connection ID to use when fetching connection info. :param impersonation_chain: Optional. Service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """
[docs]defexecute(self,context:Context):DataplexCatalogEntryLink.persist(context=context,task_instance=self,)try:entry=self.hook.update_entry(location=self.location,project_id=self.project_id,entry_id=self.entry_id,entry_group_id=self.entry_group_id,entry_configuration=self.entry_configuration,update_mask=self.update_mask,allow_missing=self.allow_missing,delete_missing_aspects=self.delete_missing_aspects,aspect_keys=self.aspect_keys,retry=self.retry,timeout=self.timeout,metadata=self.metadata,)exceptNotFoundasex:self.log.info("Specified Entry was not found.")raiseAirflowException(ex)exceptExceptionasexc:raiseAirflowException(exc)else:result=Entry.to_dict(entry)self.log.info("Entry %s was successfully updated.",self.entry_id)returnresult
[docs]classDataplexCatalogDeleteEntryOperator(DataplexCatalogBaseOperator):""" Delete an Entry resource. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:DataplexCatalogDeleteEntryOperator` :param entry_id: Required. Entry identifier. It has to be unique within an Entry Group. Entries corresponding to Google Cloud resources use an Entry ID format based on `full resource names <https://cloud.google.com/apis/design/resource_names#full_resource_name>`__. The format is a full resource name of the resource without the prefix double slashes in the API service name part of the full resource name. This allows retrieval of entries using their associated resource name. For example, if the full resource name of a resource is ``//library.googleapis.com/shelves/shelf1/books/book2``, then the suggested entry_id is ``library.googleapis.com/shelves/shelf1/books/book2``. It is also suggested to follow the same convention for entries corresponding to resources from providers or systems other than Google Cloud. The maximum size of the field is 4000 characters. :param entry_group_id: Required. EntryGroup resource name to which created Entry will belong to. :param project_id: Required. The ID of the Google Cloud project where the service is used. :param location: Required. The ID of the Google Cloud region where the service is used. :param gcp_conn_id: Optional. The connection ID to use to connect to Google Cloud. :param retry: Optional. A retry object used to retry requests. If `None` is specified, requests will not be retried. :param timeout: Optional. The amount of time, in seconds, to wait for the request to complete. Note that if `retry` is specified, the timeout applies to each individual attempt. :param metadata: Optional. Additional metadata that is provided to the method. :param impersonation_chain: Optional. Service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). """