aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/cloud.google.com/go/logging/logadmin/resources.go
Commit message (Collapse)AuthorAgeFilesLines
* vendor: deleteTaras Madan2025-01-231-75/+0
|
* mod: do: bump cloud.google.com/go/logging from 1.6.1 to 1.7.0dependabot[bot]2023-07-241-1/+1
| | | | | | | | | | | | | | | Bumps [cloud.google.com/go/logging](https://github.com/googleapis/google-cloud-go) from 1.6.1 to 1.7.0. - [Release notes](https://github.com/googleapis/google-cloud-go/releases) - [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/documentai/CHANGES.md) - [Commits](https://github.com/googleapis/google-cloud-go/compare/iot/v1.6.1...dlp/v1.7.0) --- updated-dependencies: - dependency-name: cloud.google.com/go/logging dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
* dashboard/app: update to go116 (#2959)Taras Madan2022-01-051-0/+75
| | | | | | 1. Updated the "include"s. 2. No logs read API in the AppEngine anymore. Replaced by the GCP logging API. 3. Use "GO111MODULE=off gcloud beta app deploy ./dashboard/app/app.yaml --no-promote" to test new deployment. 4. Updated the documentation.
* vendor: switch from dep to godepDmitry Vyukov2017-06-131-74/+0
| | | | | | | dep tool vendored too much code (100MB) including tests and unused packages. godep vendored significantly less (12MB) without tests and unused packages. The main advantage is that pre-Go1.9 toolchain does not run tests of all vendor packages now.
* vendor: vendor dependenciesDmitry Vyukov2017-06-131-0/+74
All dependencies are vendored with: go get github.com/golang/dep dep init If necessary, can be updated with: dep ensure -update Fixes #215