googleapis/google/cloud/dataplex/v1/processing.proto
Google APIs 1742af79e7 feat(dataplex): Add RequestDataProductAccess method to request access to DataAssets with in a DataProduct
feat(dataplex): Add `ApprovalWorkflowService` to manage `ChangeRequest` resource
feat(dataplex): Add `ModifyEntry` method to `CatalogService`
feat(dataplex): Add `UnstructuredDataOptions` message
feat(dataplex): Add `Mode` enum in `DataProfileSpec` message
feat(dataplex): Add `CancelDataScanJob` method to `DataScanService`
feat(dataplex): Add `DataQualityRuleTemplate` message
docs: A comment for message `Aspect` is changed
docs: A comment for field `view` in message `.google.cloud.dataplex.v1.GetEntryRequest` is changed
docs: A comment for field `view` in message `.google.cloud.dataplex.v1.LookupEntryRequest` is changed
docs: A comment for field `resources` in message `.google.cloud.dataplex.v1.LookupContextRequest` is changed
docs: A comment for field `options` in message `.google.cloud.dataplex.v1.LookupContextRequest` is changed
docs: A comment for field `context` in message `.google.cloud.dataplex.v1.LookupContextResponse` is changed
docs: A comment for field `data_scan_id` in message `.google.cloud.dataplex.v1.CreateDataScanRequest` is changed
docs: A comment for message `DataScan` is changed
docs: A comment for field `resource` in message `.google.cloud.dataplex.v1.DataSource` is changed

PiperOrigin-RevId: 920743950
2026-05-24 21:12:11 -07:00

129 lines
4.8 KiB
Protocol Buffer

// Copyright 2026 Google LLC
//
// Licensed 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.
syntax = "proto3";
package google.cloud.dataplex.v1;
import "google/api/field_behavior.proto";
import "google/api/resource.proto";
import "google/protobuf/duration.proto";
option go_package = "cloud.google.com/go/dataplex/apiv1/dataplexpb;dataplexpb";
option java_multiple_files = true;
option java_outer_classname = "ProcessingProto";
option java_package = "com.google.cloud.dataplex.v1";
// DataScan scheduling and trigger settings.
message Trigger {
// The scan runs once via `RunDataScan` API.
message OnDemand {}
// The scan is scheduled to run periodically.
message Schedule {
// Required. [Cron](https://en.wikipedia.org/wiki/Cron) schedule for running
// scans periodically.
//
// To explicitly set a timezone in the cron tab, apply a prefix in the
// cron tab: **"CRON_TZ=${IANA_TIME_ZONE}"** or **"TZ=${IANA_TIME_ZONE}"**.
// The **${IANA_TIME_ZONE}** may only be a valid string from IANA time zone
// database
// ([wikipedia](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List)).
// For example, `CRON_TZ=America/New_York 1 * * * *`, or
// `TZ=America/New_York 1 * * * *`.
//
// This field is required for Schedule scans.
string cron = 1 [(google.api.field_behavior) = REQUIRED];
}
// The scan runs once using create API.
message OneTime {
// Optional. Time to live for OneTime scans.
// default value is 24 hours, minimum value is 0 seconds, and maximum value
// is 365 days. The time is calculated from the data scan job completion
// time. If value is set as 0 seconds, the scan will be immediately deleted
// upon job completion, regardless of whether the job succeeded or failed.
google.protobuf.Duration ttl_after_scan_completion = 1
[(google.api.field_behavior) = OPTIONAL];
}
// DataScan scheduling and trigger settings.
//
// If not specified, the default is `onDemand`.
oneof mode {
// The scan runs once via `RunDataScan` API.
OnDemand on_demand = 100;
// The scan is scheduled to run periodically.
Schedule schedule = 101;
// The scan runs once, and does not create an associated ScanJob child
// resource.
OneTime one_time = 102;
}
}
// The data source for DataScan.
message DataSource {
// The source is required and immutable. Once it is set, it cannot be change
// to others.
oneof source {
// Immutable. The Dataplex Universal Catalog entity that represents the data
// source (e.g. BigQuery table) for DataScan, of the form:
// `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/entities/{entity_id}`.
string entity = 100 [
(google.api.field_behavior) = IMMUTABLE,
(google.api.resource_reference) = {
type: "dataplex.googleapis.com/Entity"
}
];
// Immutable. The service-qualified full resource name of the cloud resource
// for a DataScan job to scan against. The field could either be: Cloud
// Storage bucket for DataDiscoveryScan Format:
// //storage.googleapis.com/projects/PROJECT_ID/buckets/BUCKET_ID
// or
// BigQuery table of type "TABLE" for
// DataProfileScan/DataQualityScan/DataDocumentationScan
// Format:
// //bigquery.googleapis.com/projects/PROJECT_ID/datasets/DATASET_ID/tables/TABLE_ID
// or
// BigQuery dataset for DataDocumentationScan only
// Format:
// //bigquery.googleapis.com/projects/PROJECT_ID/datasets/DATASET_ID
string resource = 101 [(google.api.field_behavior) = IMMUTABLE];
}
}
// The data scanned during processing (e.g. in incremental DataScan)
message ScannedData {
// A data range denoted by a pair of start/end values of a field.
message IncrementalField {
// Output only. The field that contains values which monotonically increases
// over time (e.g. a timestamp column).
string field = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
// Output only. Value that marks the start of the range.
string start = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
// Output only. Value that marks the end of the range.
string end = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
}
// The range of scanned data
oneof data_range {
// The range denoted by values of an incremental field
IncrementalField incremental_field = 1;
}
}