From 31faeca823e1fdcf55d305a5ff1cacbdfa4e0284 Mon Sep 17 00:00:00 2001 From: yoshi-code-bot <70984784+yoshi-code-bot@users.noreply.github.com> Date: Fri, 17 Jul 2026 18:13:37 -0700 Subject: [PATCH] Regenerate dlp client --- ...ivacyDlpV2AnalyzeDataSourceRiskDetails.php | 12 +++++----- src/DLP/GooglePrivacyDlpV2DiscoveryConfig.php | 12 +++++----- src/DLP/GooglePrivacyDlpV2DlpJob.php | 2 +- .../GooglePrivacyDlpV2InfoTypeCondition.php | 24 +++++++++++++++++++ ...lePrivacyDlpV2InspectDataSourceDetails.php | 2 +- src/DLP/GooglePrivacyDlpV2JobTrigger.php | 8 +++---- .../GooglePrivacyDlpV2RequestedOptions.php | 4 ++-- 7 files changed, 44 insertions(+), 20 deletions(-) diff --git a/src/DLP/GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails.php b/src/DLP/GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails.php index 1af7de5cd3d..79de3e12a53 100644 --- a/src/DLP/GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails.php +++ b/src/DLP/GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails.php @@ -39,7 +39,7 @@ class GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails extends \Google\Model protected $requestedSourceTableDataType = ''; /** - * Categorical stats result + * Output only. Categorical stats result * * @param GooglePrivacyDlpV2CategoricalStatsResult $categoricalStatsResult */ @@ -55,7 +55,7 @@ public function getCategoricalStatsResult() return $this->categoricalStatsResult; } /** - * Delta-presence result + * Output only. Delta-presence result * * @param GooglePrivacyDlpV2DeltaPresenceEstimationResult $deltaPresenceEstimationResult */ @@ -71,7 +71,7 @@ public function getDeltaPresenceEstimationResult() return $this->deltaPresenceEstimationResult; } /** - * K-anonymity result + * Output only. K-anonymity result * * @param GooglePrivacyDlpV2KAnonymityResult $kAnonymityResult */ @@ -87,7 +87,7 @@ public function getKAnonymityResult() return $this->kAnonymityResult; } /** - * K-map result + * Output only. K-map result * * @param GooglePrivacyDlpV2KMapEstimationResult $kMapEstimationResult */ @@ -103,7 +103,7 @@ public function getKMapEstimationResult() return $this->kMapEstimationResult; } /** - * L-divesity result + * Output only. L-divesity result * * @param GooglePrivacyDlpV2LDiversityResult $lDiversityResult */ @@ -119,7 +119,7 @@ public function getLDiversityResult() return $this->lDiversityResult; } /** - * Numerical stats result + * Output only. Numerical stats result * * @param GooglePrivacyDlpV2NumericalStatsResult $numericalStatsResult */ diff --git a/src/DLP/GooglePrivacyDlpV2DiscoveryConfig.php b/src/DLP/GooglePrivacyDlpV2DiscoveryConfig.php index bf7b2f23f9c..cea5033da8e 100644 --- a/src/DLP/GooglePrivacyDlpV2DiscoveryConfig.php +++ b/src/DLP/GooglePrivacyDlpV2DiscoveryConfig.php @@ -71,9 +71,9 @@ class GooglePrivacyDlpV2DiscoveryConfig extends \Google\Collection */ public $lastRunTime; /** - * Unique resource name for the DiscoveryConfig, assigned by the service when - * the DiscoveryConfig is created, for example `projects/dlp-test- - * project/locations/global/discoveryConfigs/53234423`. + * Output only. Unique resource name for the DiscoveryConfig, assigned by the + * service when the DiscoveryConfig is created, for example `projects/dlp- + * test-project/locations/global/discoveryConfigs/53234423`. * * @var string */ @@ -209,9 +209,9 @@ public function getLastRunTime() return $this->lastRunTime; } /** - * Unique resource name for the DiscoveryConfig, assigned by the service when - * the DiscoveryConfig is created, for example `projects/dlp-test- - * project/locations/global/discoveryConfigs/53234423`. + * Output only. Unique resource name for the DiscoveryConfig, assigned by the + * service when the DiscoveryConfig is created, for example `projects/dlp- + * test-project/locations/global/discoveryConfigs/53234423`. * * @param string $name */ diff --git a/src/DLP/GooglePrivacyDlpV2DlpJob.php b/src/DLP/GooglePrivacyDlpV2DlpJob.php index 30943c88e47..2f9e65047e2 100644 --- a/src/DLP/GooglePrivacyDlpV2DlpJob.php +++ b/src/DLP/GooglePrivacyDlpV2DlpJob.php @@ -123,7 +123,7 @@ class GooglePrivacyDlpV2DlpJob extends \Google\Collection public $type; /** - * Events that should occur after the job has completed. + * Output only. Events that should occur after the job has completed. * * @param GooglePrivacyDlpV2ActionDetails[] $actionDetails */ diff --git a/src/DLP/GooglePrivacyDlpV2InfoTypeCondition.php b/src/DLP/GooglePrivacyDlpV2InfoTypeCondition.php index b695843f3d7..3d81810c9dc 100644 --- a/src/DLP/GooglePrivacyDlpV2InfoTypeCondition.php +++ b/src/DLP/GooglePrivacyDlpV2InfoTypeCondition.php @@ -23,6 +23,13 @@ class GooglePrivacyDlpV2InfoTypeCondition extends \Google\Model protected $anyInfoTypeDataType = ''; protected $infoTypesType = GooglePrivacyDlpV2InfoTypes::class; protected $infoTypesDataType = ''; + /** + * Optional. The minimum total number of findings of all matching info types + * required for this condition to evaluate to true. Defaults to 1 if unset. + * + * @var string + */ + public $minCount; /** * match any info types. @@ -56,6 +63,23 @@ public function getInfoTypes() { return $this->infoTypes; } + /** + * Optional. The minimum total number of findings of all matching info types + * required for this condition to evaluate to true. Defaults to 1 if unset. + * + * @param string $minCount + */ + public function setMinCount($minCount) + { + $this->minCount = $minCount; + } + /** + * @return string + */ + public function getMinCount() + { + return $this->minCount; + } } // Adding a class alias for backwards compatibility with the previous class name. diff --git a/src/DLP/GooglePrivacyDlpV2InspectDataSourceDetails.php b/src/DLP/GooglePrivacyDlpV2InspectDataSourceDetails.php index f219ccd685f..12a6ab35ec8 100644 --- a/src/DLP/GooglePrivacyDlpV2InspectDataSourceDetails.php +++ b/src/DLP/GooglePrivacyDlpV2InspectDataSourceDetails.php @@ -41,7 +41,7 @@ public function getRequestedOptions() return $this->requestedOptions; } /** - * A summary of the outcome of this inspection job. + * Output only. A summary of the outcome of this inspection job. * * @param GooglePrivacyDlpV2Result $result */ diff --git a/src/DLP/GooglePrivacyDlpV2JobTrigger.php b/src/DLP/GooglePrivacyDlpV2JobTrigger.php index 653e998cc13..027c9998b8e 100644 --- a/src/DLP/GooglePrivacyDlpV2JobTrigger.php +++ b/src/DLP/GooglePrivacyDlpV2JobTrigger.php @@ -65,8 +65,8 @@ class GooglePrivacyDlpV2JobTrigger extends \Google\Collection */ public $lastRunTime; /** - * Unique resource name for the triggeredJob, assigned by the service when the - * triggeredJob is created, for example `projects/dlp-test- + * Output only. Unique resource name for the triggeredJob, assigned by the + * service when the triggeredJob is created, for example `projects/dlp-test- * project/jobTriggers/53234423`. * * @var string @@ -187,8 +187,8 @@ public function getLastRunTime() return $this->lastRunTime; } /** - * Unique resource name for the triggeredJob, assigned by the service when the - * triggeredJob is created, for example `projects/dlp-test- + * Output only. Unique resource name for the triggeredJob, assigned by the + * service when the triggeredJob is created, for example `projects/dlp-test- * project/jobTriggers/53234423`. * * @param string $name diff --git a/src/DLP/GooglePrivacyDlpV2RequestedOptions.php b/src/DLP/GooglePrivacyDlpV2RequestedOptions.php index 440376c7b23..62349f47d65 100644 --- a/src/DLP/GooglePrivacyDlpV2RequestedOptions.php +++ b/src/DLP/GooglePrivacyDlpV2RequestedOptions.php @@ -41,8 +41,8 @@ public function getJobConfig() return $this->jobConfig; } /** - * If run with an InspectTemplate, a snapshot of its state at the time of this - * run. + * Output only. If run with an InspectTemplate, a snapshot of its state at the + * time of this run. * * @param GooglePrivacyDlpV2InspectTemplate $snapshotInspectTemplate */