chore(all): auto-regenerate gapics (#6080)

This is an auto-generated regeneration of the gapic clients by
cloud.google.com/go/internal/gapicgen. Once the corresponding genproto PR is
submitted, genbot will update this PR with a newer dependency to the newer
version of genproto and assign reviewers to this PR.

If you have been assigned to review this PR, please:

- Ensure that the version of genproto in go.mod has been updated.
- Ensure that CI is passing. If it's failing, it requires your manual attention.
- Approve and submit this PR if you believe it's ready to ship.

Corresponding genproto PR: https://github.com/googleapis/go-genproto/pull/812

Changes:

chore(gkemulticloud): Configure Ruby clients
  PiperOrigin-RevId: 450033738
  Source-Link: https://github.com/googleapis/googleapis/commit/2ac1b0abec75863d61ba87beee32a6e1719c561e

docs(video/livestream): updated comments to match API behaviors
  PiperOrigin-RevId: 449874412
  Source-Link: https://github.com/googleapis/googleapis/commit/4c6f5836a32f957d169c1590c32327085f46a31c

feat(accessapproval): update protos to include InvalidateApprovalRequest and GetAccessApprovalServiceAccount APIs
  PiperOrigin-RevId: 449820922
  Source-Link: https://github.com/googleapis/googleapis/commit/96825848ff85e3edefa9171e97571a8a05ede986
23 files changed
tree: f9614ff16f54463554b5095e66bbe4572af8892f
  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. certificatemanager/
  19. channel/
  20. civil/
  21. cloudbuild/
  22. clouddms/
  23. cloudtasks/
  24. cmd/
  25. compute/
  26. contactcenterinsights/
  27. container/
  28. containeranalysis/
  29. datacatalog/
  30. dataflow/
  31. datafusion/
  32. datalabeling/
  33. dataplex/
  34. dataproc/
  35. dataqna/
  36. datastore/
  37. datastream/
  38. debugger/
  39. deploy/
  40. dialogflow/
  41. dlp/
  42. documentai/
  43. domains/
  44. errorreporting/
  45. essentialcontacts/
  46. eventarc/
  47. filestore/
  48. firestore/
  49. functions/
  50. gaming/
  51. gkebackup/
  52. gkeconnect/
  53. gkehub/
  54. gkemulticloud/
  55. grafeas/
  56. gsuiteaddons/
  57. httpreplay/
  58. iam/
  59. iap/
  60. ids/
  61. internal/
  62. iot/
  63. kms/
  64. language/
  65. lifesciences/
  66. logging/
  67. longrunning/
  68. managedidentities/
  69. mediatranslation/
  70. memcache/
  71. metastore/
  72. monitoring/
  73. networkconnectivity/
  74. networkmanagement/
  75. networksecurity/
  76. notebooks/
  77. optimization/
  78. orchestration/
  79. orgpolicy/
  80. osconfig/
  81. oslogin/
  82. phishingprotection/
  83. policytroubleshooter/
  84. privatecatalog/
  85. profiler/
  86. pubsub/
  87. pubsublite/
  88. recaptchaenterprise/
  89. recommendationengine/
  90. recommender/
  91. redis/
  92. resourcemanager/
  93. resourcesettings/
  94. retail/
  95. rpcreplay/
  96. run/
  97. scheduler/
  98. secretmanager/
  99. security/
  100. securitycenter/
  101. servicecontrol/
  102. servicedirectory/
  103. servicemanagement/
  104. serviceusage/
  105. shell/
  106. spanner/
  107. speech/
  108. storage/
  109. storagetransfer/
  110. talent/
  111. texttospeech/
  112. third_party/
  113. tpu/
  114. trace/
  115. translate/
  116. video/
  117. videointelligence/
  118. vision/
  119. vmmigration/
  120. vpcaccess/
  121. webrisk/
  122. websecurityscanner/
  123. workflows/
  124. .gitignore
  125. .release-please-manifest-submodules.json
  126. .release-please-manifest.json
  127. CHANGES.md
  128. CODE_OF_CONDUCT.md
  129. CONTRIBUTING.md
  130. doc.go
  131. go.mod
  132. go.sum
  133. header_test.go
  134. LICENSE
  135. README.md
  136. release-please-config-yoshi-submodules.json
  137. release-please-config.json
  138. RELEASING.md
  139. SECURITY.md
  140. 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

Our libraries are compatible with at least the three most recent, major Go releases. They are currently compatible with:

  • Go 1.18
  • Go 1.17
  • Go 1.16
  • Go 1.15

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