commit | 1a16cbf260bb673e07a05e1014868b236e510499 | [log] [tgz] |
---|---|---|
author | gcf-owl-bot[bot] <78513119+gcf-owl-bot[bot]@users.noreply.github.com> | Mon Nov 06 17:46:38 2023 +0000 |
committer | GitHub <noreply@github.com> | Mon Nov 06 17:46:38 2023 +0000 |
tree | 4dbe1b24a7e6818a8a4356a8c7e28fbb3f9995b1 | |
parent | ca8d3cbf80f7fc2f47beb53b95138040c83097db [diff] |
feat(datacatalog/lineage): add open lineage support (#8974) - [ ] Regenerate this pull request now. fix: change `start_time` in message `.google.cloud.datacatalog.lineage.v1.LineageEvent` to `required` as intended by api PiperOrigin-RevId: 579762272 Source-Link: https://togithub.com/googleapis/googleapis/commit/58878bdf14a716bcbe909c6f987a6b7bd42879d9 Source-Link: https://togithub.com/googleapis/googleapis-gen/commit/96a4d735b92f202fbdd2c62da2e21e63216bfa88 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiOTZhNGQ3MzViOTJmMjAyZmJkZDJjNjJkYTJlMjFlNjMyMTZiZmE4OCJ9 BEGIN_NESTED_COMMIT feat(aiplatform): add Optimized to FeatureOnlineStore PiperOrigin-RevId: 579291287 Source-Link: https://togithub.com/googleapis/googleapis/commit/90a53d6d1c1c1854e73f390a7701069dc6da8146 Source-Link: https://togithub.com/googleapis/googleapis-gen/commit/94f8d8b2207ecf9882a88c305590bcea9ec01d6e Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiOTRmOGQ4YjIyMDdlY2Y5ODgyYTg4YzMwNTU5MGJjZWE5ZWMwMWQ2ZSJ9 END_NESTED_COMMIT
Go packages for Google Cloud Platform services.
import "cloud.google.com/go"
To install the packages on your system, do not clone the repo. Instead:
cd /my/cloud/project
go get
the package(s) you want to use:go get cloud.google.com/go/firestore # Replace with the package you want to use.
NOTE: Some of these packages are under development, and may occasionally make backwards-incompatible changes.
For an updated list of all of our released APIs please see our reference docs.
Our libraries are compatible with at least the three most recent, major Go releases. They are currently compatible with:
By default, each API will use Google Application Default Credentials for authorization credentials used in calling the API endpoints. This will allow your application to run in many environments without requiring explicit configuration.
client, err := storage.NewClient(ctx)
To authorize using a JSON key file, pass option.WithCredentialsFile
to the NewClient
function of the desired package. For example:
client, err := storage.NewClient(ctx, option.WithCredentialsFile("path/to/keyfile.json"))
You can exert more control over authorization by using the golang.org/x/oauth2
package to create an oauth2.TokenSource
. Then pass option.WithTokenSource
to the NewClient
function:
tokenSource := ...
client, err := storage.NewClient(ctx, option.WithTokenSource(tokenSource))
Contributions are welcome. Please, see the CONTRIBUTING document for details.
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms. See Contributor Code of Conduct for more information.