Skip to content
Closed
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
6 changes: 3 additions & 3 deletions .librarian/state.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
image: us-central1-docker.pkg.dev/cloud-sdk-librarian-prod/images-prod/librarian-go:latest
libraries:
libraries:
- id: dlp
version: 1.24.0
last_generated_commit: 8ee3aad1fd2f2376373a030cafc61b3e9788e48a
last_generated_commit: 6b78856d962c5e0840b72886b1bcfd40699c5675
apis:
- path: google/privacy/dlp/v2
service_config: ""
service_config: dlp_v2.yaml
source_roots:
- dlp
- internal/generated/snippets/dlp
Expand Down
19 changes: 17 additions & 2 deletions dlp/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Cloud Data Loss Prevention (DLP) API
# Sensitive Data Protection (DLP)

[![Go Reference](https://pkg.go.dev/badge/cloud.google.com/go/dlp.svg)](https://pkg.go.dev/cloud.google.com/go/dlp)

Go Client Library for Cloud Data Loss Prevention (DLP) API.
Go Client Library for Sensitive Data Protection (DLP).

## Install

Expand All @@ -19,6 +19,21 @@ However, a `v1+` module may have breaking changes in two scenarios:
* Packages with `alpha` or `beta` in the import path
* The GoDoc has an explicit stability disclaimer (for example, for an experimental feature).

### Which package to use?

Generated client library surfaces can be found in packages who's import path
ends in `.../apivXXX`. The `XXX` could be something like `1` or `2` in the case
of a stable service backend or may be like `1beta2` or `2beta` in the case of a
more experimental service backend. Because of this fact, a given module can have
multiple clients for different service backends. In these cases it is generally
recommend to use clients with stable service backends, with import suffixes like
`apiv1`, unless you need to use features that are only present in a beta backend
or there is not yet a stable backend available.

## Google Cloud Samples

To browse ready to use code samples check [Google Cloud Samples](https://cloud.google.com/docs/samples?l=go).

## Go Version Support

See the [Go Versions Supported](https://github.com/googleapis/google-cloud-go#go-versions-supported)
Expand Down
Loading
Loading