Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages/google-cloud-dlp/google/cloud/dlp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,7 @@
ReplaceWithInfoTypeConfig,
ResourceVisibility,
RiskAnalysisJobConfig,
SaveToGcsFindingsOutput,
Schedule,
SearchConnectionsRequest,
SearchConnectionsResponse,
Expand Down Expand Up @@ -544,6 +545,7 @@
"ReplaceValueConfig",
"ReplaceWithInfoTypeConfig",
"RiskAnalysisJobConfig",
"SaveToGcsFindingsOutput",
"Schedule",
"SearchConnectionsRequest",
"SearchConnectionsResponse",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "3.30.0" # {x-release-please-version}
__version__ = "0.0.0" # {x-release-please-version}
2 changes: 2 additions & 0 deletions packages/google-cloud-dlp/google/cloud/dlp_v2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,7 @@
ReplaceWithInfoTypeConfig,
ResourceVisibility,
RiskAnalysisJobConfig,
SaveToGcsFindingsOutput,
Schedule,
SearchConnectionsRequest,
SearchConnectionsResponse,
Expand Down Expand Up @@ -580,6 +581,7 @@
"ReplaceWithInfoTypeConfig",
"ResourceVisibility",
"RiskAnalysisJobConfig",
"SaveToGcsFindingsOutput",
"Schedule",
"SearchConnectionsRequest",
"SearchConnectionsResponse",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "3.30.0" # {x-release-please-version}
__version__ = "0.0.0" # {x-release-please-version}
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,7 @@
ReplaceWithInfoTypeConfig,
ResourceVisibility,
RiskAnalysisJobConfig,
SaveToGcsFindingsOutput,
Schedule,
SearchConnectionsRequest,
SearchConnectionsResponse,
Expand Down Expand Up @@ -535,6 +536,7 @@
"ReplaceValueConfig",
"ReplaceWithInfoTypeConfig",
"RiskAnalysisJobConfig",
"SaveToGcsFindingsOutput",
"Schedule",
"SearchConnectionsRequest",
"SearchConnectionsResponse",
Expand Down
20 changes: 19 additions & 1 deletion packages/google-cloud-dlp/google/cloud/dlp_v2/types/dlp.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,7 @@
"DataSourceType",
"FileClusterType",
"ProcessingLocation",
"SaveToGcsFindingsOutput",
},
)

Expand Down Expand Up @@ -9729,7 +9730,7 @@ class DiscoveryCloudStorageFilter(proto.Message):


class FileStoreCollection(proto.Message):
r"""Match file stores (e.g. buckets) using regex filters.
r"""Match file stores (e.g. buckets) using filters.

.. _oneof: https://proto-plus-python.readthedocs.io/en/stable/fields.html#oneofs-mutually-exclusive-fields

Expand Down Expand Up @@ -14366,4 +14367,21 @@ class ImageFallbackLocation(proto.Message):
)


class SaveToGcsFindingsOutput(proto.Message):
r"""Collection of findings saved to a Cloud Storage bucket. This
is used as the proto schema for textproto files created when
specifying a cloud storage path to save inspection findings.

Attributes:
findings (MutableSequence[google.cloud.dlp_v2.types.Finding]):
List of findings.
"""

findings: MutableSequence["Finding"] = proto.RepeatedField(
proto.MESSAGE,
number=1,
message="Finding",
)


__all__ = tuple(sorted(__protobuf__.manifest))
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
],
"language": "PYTHON",
"name": "google-cloud-dlp",
"version": "3.30.0"
"version": "0.1.0"
},
"snippets": [
{
Expand Down
Loading