Skip to content

Commit dafecc9

Browse files
feat(documentai): Make Layout Parser generally available in V1 (#10277)
- [ ] Regenerate this pull request now. PiperOrigin-RevId: 638041158 Source-Link: https://togithub.com/googleapis/googleapis/commit/1e4137870560340a14700618a05e2d7162326af7 Source-Link: https://togithub.com/googleapis/googleapis-gen/commit/1d34c97add093df562fa50732da3656c76b83ede Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMWQzNGM5N2FkZDA5M2RmNTYyZmE1MDczMmRhMzY1NmM3NmI4M2VkZSJ9 BEGIN_NESTED_COMMIT feat(discoveryengine): support multiple parent patterns for controls docs(discoveryengine): mention multiple parent patterns for controls PiperOrigin-RevId: 638017343 Source-Link: https://togithub.com/googleapis/googleapis/commit/dd6a42dce0c2b8d698fff68fbf6e9b08a3b0b843 Source-Link: https://togithub.com/googleapis/googleapis-gen/commit/553fe9e74fa61c475cd62544b283e70795e876cb Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNTUzZmU5ZTc0ZmE2MWM0NzVjZDYyNTQ0YjI4M2U3MDc5NWU4NzZjYiJ9 END_NESTED_COMMIT BEGIN_NESTED_COMMIT feat(discoveryengine): add control service APIs feat(discoveryengine): return relevance score for chunk based search (alpha only) feat(discoveryengine): support writing user events for blended engines feat(discoveryengine): support cancelling import operations feat(discoveryengine): add custom model list API docs(discoveryengine): keep the API doc up-to-date with recent changes PiperOrigin-RevId: 638008355 Source-Link: https://togithub.com/googleapis/googleapis/commit/68e854115274f47762e036bc28d8bf0cd3026865 Source-Link: https://togithub.com/googleapis/googleapis-gen/commit/05aed4078c9fe97e7400db842dfa79a8d07c6a4e Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMDVhZWQ0MDc4YzlmZTk3ZTc0MDBkYjg0MmRmYTc5YThkMDdjNmE0ZSJ9 END_NESTED_COMMIT BEGIN_NESTED_COMMIT feat(discoveryengine): add control service APIs feat(discoveryengine): support writing user events for blended engines feat(discoveryengine): support cancelling import operations feat(discoveryengine): add custom model list API feat(discoveryengine): add provision project API docs(discoveryengine): keep the API doc up-to-date with recent changes PiperOrigin-RevId: 638007679 Source-Link: https://togithub.com/googleapis/googleapis/commit/fb98f92554c17ec159a0b35ea8ffca71bac14385 Source-Link: https://togithub.com/googleapis/googleapis-gen/commit/5d770083ccb9ee1327c476c51f3a6ac3fa492940 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNWQ3NzAwODNjY2I5ZWUxMzI3YzQ3NmM1MWYzYTZhYzNmYTQ5Mjk0MCJ9 END_NESTED_COMMIT BEGIN_NESTED_COMMIT feat(maps): removed mapsplatformdatasets v1alpha library PiperOrigin-RevId: 638004138 Source-Link: https://togithub.com/googleapis/googleapis/commit/eb6d70d554f57def6a6e210ff09163a307a9aa18 Source-Link: https://togithub.com/googleapis/googleapis-gen/commit/6b9b70f9d6d3354d375c024d151773c18fb8298b Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNmI5YjcwZjlkNmQzMzU0ZDM3NWMwMjRkMTUxNzczYzE4ZmI4Mjk4YiJ9 END_NESTED_COMMIT
1 parent 1d8c1b8 commit dafecc9

File tree

234 files changed

+38405
-8759
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

234 files changed

+38405
-8759
lines changed

.release-please-manifest-submodules.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
"dataqna": "0.8.7",
5050
"datastream": "1.10.6",
5151
"deploy": "1.19.0",
52+
"developerconnect": "0.0.0",
5253
"dialogflow": "1.53.0",
5354
"discoveryengine": "1.7.1",
5455
"dlp": "1.13.0",

developerconnect/CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Changes

developerconnect/README.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Developer Connect API
2+
3+
[![Go Reference](https://pkg.go.dev/badge/cloud.google.com/go/developerconnect.svg)](https://pkg.go.dev/cloud.google.com/go/developerconnect)
4+
5+
Go Client Library for Developer Connect API.
6+
7+
## Install
8+
9+
```bash
10+
go get cloud.google.com/go/developerconnect
11+
```
12+
13+
## Stability
14+
15+
The stability of this module is indicated by SemVer.
16+
17+
However, a `v1+` module may have breaking changes in two scenarios:
18+
19+
* Packages with `alpha` or `beta` in the import path
20+
* The GoDoc has an explicit stability disclaimer (for example, for an experimental feature).
21+
22+
### Which package to use?
23+
24+
Generated client library surfaces can be found in packages who's import path
25+
ends in `.../apivXXX`. The `XXX` could be something like `1` or `2` in the case
26+
of a stable service backend or may be like `1beta2` or `2beta` in the case of a
27+
more experimental service backend. Because of this fact, a given module can have
28+
multiple clients for different service backends. In these cases it is generally
29+
recommend to use clients with stable service backends, with import suffixes like
30+
`apiv1`, unless you need to use features that are only present in a beta backend
31+
or there is not yet a stable backend available.
32+
33+
## Google Cloud Samples
34+
35+
To browse ready to use code samples check [Google Cloud Samples](https://cloud.google.com/docs/samples?l=go).
36+
37+
## Go Version Support
38+
39+
See the [Go Versions Supported](https://github.com/googleapis/google-cloud-go#go-versions-supported)
40+
section in the root directory's README.
41+
42+
## Authorization
43+
44+
See the [Authorization](https://github.com/googleapis/google-cloud-go#authorization)
45+
section in the root directory's README.
46+
47+
## Contributing
48+
49+
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md)
50+
document for details.
51+
52+
Please note that this project is released with a Contributor Code of Conduct.
53+
By participating in this project you agree to abide by its terms. See
54+
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md#contributor-code-of-conduct)
55+
for more information.

0 commit comments

Comments
 (0)