chore(all): auto-regenerate .pb.go files (#4904)

Changes:

feat(aiplatform): add vizier service to aiplatform v1 BUILD.bazel
  Committer: @dizcology
  PiperOrigin-RevId: 399538263
  Source-Link: googleapis/googleapis@70d5a82

feat(contactcenterinsights): add metadata from dialogflow related to transcript segment feat: add sentiment data for transcript segment feat: add obfuscated if from dialogflow
  PiperOrigin-RevId: 399513805
  Source-Link: googleapis/googleapis@0766e6d

docs(monitoring/metricsscope): update product documentation url for monitoring metrics scopes
  PiperOrigin-RevId: 399443900
  Source-Link: googleapis/googleapis@6ce857f
9 files changed
tree: b3946ef6a1ff03491aa55b1b699ec5309b01518a
  1. .github/
  2. accessapproval/
  3. accesscontextmanager/
  4. aiplatform/
  5. analytics/
  6. apigateway/
  7. apigeeconnect/
  8. appengine/
  9. area120/
  10. artifactregistry/
  11. asset/
  12. assuredworkloads/
  13. automl/
  14. bigquery/
  15. bigtable/
  16. billing/
  17. binaryauthorization/
  18. channel/
  19. civil/
  20. cloudbuild/
  21. clouddms/
  22. cloudtasks/
  23. cmd/
  24. compute/
  25. contactcenterinsights/
  26. container/
  27. containeranalysis/
  28. datacatalog/
  29. dataflow/
  30. datafusion/
  31. datalabeling/
  32. dataproc/
  33. dataqna/
  34. datastore/
  35. datastream/
  36. debugger/
  37. dialogflow/
  38. dlp/
  39. documentai/
  40. domains/
  41. errorreporting/
  42. essentialcontacts/
  43. eventarc/
  44. firestore/
  45. functions/
  46. gaming/
  47. gkeconnect/
  48. gkehub/
  49. grafeas/
  50. gsuiteaddons/
  51. httpreplay/
  52. iam/
  53. iap/
  54. internal/
  55. iot/
  56. kms/
  57. language/
  58. lifesciences/
  59. logging/
  60. longrunning/
  61. managedidentities/
  62. mediatranslation/
  63. memcache/
  64. metastore/
  65. monitoring/
  66. networkconnectivity/
  67. networkmanagement/
  68. networksecurity/
  69. notebooks/
  70. orchestration/
  71. orgpolicy/
  72. osconfig/
  73. oslogin/
  74. phishingprotection/
  75. policytroubleshooter/
  76. privatecatalog/
  77. profiler/
  78. pubsub/
  79. pubsublite/
  80. recaptchaenterprise/
  81. recommendationengine/
  82. recommender/
  83. redis/
  84. resourcemanager/
  85. resourcesettings/
  86. retail/
  87. rpcreplay/
  88. scheduler/
  89. secretmanager/
  90. security/
  91. securitycenter/
  92. servicecontrol/
  93. servicedirectory/
  94. servicemanagement/
  95. serviceusage/
  96. shell/
  97. spanner/
  98. speech/
  99. storage/
  100. storagetransfer/
  101. talent/
  102. texttospeech/
  103. third_party/
  104. tpu/
  105. trace/
  106. translate/
  107. video/
  108. videointelligence/
  109. vision/
  110. vpcaccess/
  111. webrisk/
  112. websecurityscanner/
  113. workflows/
  114. .gitignore
  115. CHANGES.md
  116. CODE_OF_CONDUCT.md
  117. CONTRIBUTING.md
  118. doc.go
  119. go.mod
  120. go.sum
  121. header_test.go
  122. LICENSE
  123. README.md
  124. RELEASING.md
  125. SECURITY.md
  126. testing.md
README.md

Google Cloud Client Libraries for Go

Go Reference

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:

  1. Change to your project directory:

    cd /my/cloud/project
    
  2. Get the package you want to use. Some products have their own module, so it's best to 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.

Supported APIs

For an updated list of all of our released APIs please see our reference docs.

Go Versions Supported

We currently support Go versions 1.11 and newer.

Authorization

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: snip:# (auth-ts)

tokenSource := ...
client, err := storage.NewClient(ctx, option.WithTokenSource(tokenSource))

Contributing

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.

Links