mirror of
https://github.com/Luzifer/nginx-sso.git
synced 2024-12-21 05:11:17 +00:00
34 lines
1.7 KiB
Go
34 lines
1.7 KiB
Go
// Copyright 2018 Google LLC
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package main
|
|
|
|
// replacementPackage is a map from an API package name to the
|
|
// import path of the package that replaces it. If an API appears
|
|
// in this map, its package doc comment will note that it is deprecated
|
|
// and point to the replacement.
|
|
// TODO(jba): consider automating this by looking at the structure of the gocloud repo.
|
|
var replacementPackage = map[string]string{
|
|
"bigquery": "cloud.google.com/go/bigquery",
|
|
"cloudkms": "cloud.google.com/go/kms/apiv1",
|
|
"cloudtasks": "cloud.google.com/go/cloudtasks/apiv2beta2",
|
|
"dataproc": "cloud.google.com/go/dataproc/apiv1",
|
|
"datastore": "cloud.google.com/go/datastore",
|
|
"dialogflow": "cloud.google.com/go/dialogflow/apiv2",
|
|
"dlp": "cloud.google.com/go/dlp/apiv2",
|
|
"firestore": "cloud.google.com/go/firestore",
|
|
"language": "cloud.google.com/go/language/apiv1",
|
|
"logging": "cloud.google.com/go/logging",
|
|
"monitoring": "cloud.google.com/go/monitoring/apiv3",
|
|
"oslogin": "cloud.google.com/go/oslogin/apiv1",
|
|
"pubsub": "cloud.google.com/go/pubsub",
|
|
"redis": "cloud.google.com/go/redis/apiv1",
|
|
"spanner": "cloud.google.com/go/spanner",
|
|
"speech": "cloud.google.com/go/speech/apiv1",
|
|
"texttospeech": "cloud.google.com/go/texttospeech/apiv1",
|
|
"translate": "cloud.google.com/go/translate",
|
|
"videointelligence": "cloud.google.com/go/videointelligence/apiv1",
|
|
"vision": "cloud.google.com/go/vision/apiv1",
|
|
"storage": "cloud.google.com/go/storage",
|
|
}
|