chore(main): release bigquery 1.58.0 (#8966)

Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
3 files changed
tree: f94ed0f430ac024a7fdd7b179f91492b84350294
  1. .devcontainer/
  2. .github/
  3. accessapproval/
  4. accesscontextmanager/
  5. advisorynotifications/
  6. ai/
  7. aiplatform/
  8. alloydb/
  9. analytics/
  10. apigateway/
  11. apigeeconnect/
  12. apigeeregistry/
  13. apikeys/
  14. appengine/
  15. apps/
  16. area120/
  17. artifactregistry/
  18. asset/
  19. assuredworkloads/
  20. auth/
  21. automl/
  22. baremetalsolution/
  23. batch/
  24. beyondcorp/
  25. bigquery/
  26. bigtable/
  27. billing/
  28. binaryauthorization/
  29. certificatemanager/
  30. channel/
  31. civil/
  32. cloudbuild/
  33. clouddms/
  34. cloudprofiler/
  35. cloudquotas/
  36. cloudtasks/
  37. commerce/
  38. compute/
  39. confidentialcomputing/
  40. config/
  41. contactcenterinsights/
  42. container/
  43. containeranalysis/
  44. datacatalog/
  45. dataflow/
  46. dataform/
  47. datafusion/
  48. datalabeling/
  49. dataplex/
  50. dataproc/
  51. dataqna/
  52. datastore/
  53. datastream/
  54. debugger/
  55. deploy/
  56. dialogflow/
  57. discoveryengine/
  58. dlp/
  59. documentai/
  60. domains/
  61. edgecontainer/
  62. edgenetwork/
  63. errorreporting/
  64. essentialcontacts/
  65. eventarc/
  66. filestore/
  67. firestore/
  68. functions/
  69. gkebackup/
  70. gkeconnect/
  71. gkehub/
  72. gkemulticloud/
  73. grafeas/
  74. gsuiteaddons/
  75. httpreplay/
  76. iam/
  77. iap/
  78. ids/
  79. internal/
  80. iot/
  81. kms/
  82. language/
  83. lifesciences/
  84. logging/
  85. longrunning/
  86. managedidentities/
  87. maps/
  88. mediatranslation/
  89. memcache/
  90. metastore/
  91. migrationcenter/
  92. monitoring/
  93. netapp/
  94. networkconnectivity/
  95. networkmanagement/
  96. networksecurity/
  97. notebooks/
  98. optimization/
  99. orchestration/
  100. orgpolicy/
  101. osconfig/
  102. oslogin/
  103. phishingprotection/
  104. policysimulator/
  105. policytroubleshooter/
  106. privatecatalog/
  107. profiler/
  108. pubsub/
  109. pubsublite/
  110. rapidmigrationassessment/
  111. recaptchaenterprise/
  112. recommendationengine/
  113. recommender/
  114. redis/
  115. resourcemanager/
  116. resourcesettings/
  117. retail/
  118. rpcreplay/
  119. run/
  120. scheduler/
  121. secretmanager/
  122. securesourcemanager/
  123. security/
  124. securitycenter/
  125. securitycentermanagement/
  126. servicecontrol/
  127. servicedirectory/
  128. servicehealth/
  129. servicemanagement/
  130. serviceusage/
  131. shell/
  132. shopping/
  133. spanner/
  134. speech/
  135. storage/
  136. storageinsights/
  137. storagetransfer/
  138. support/
  139. talent/
  140. telcoautomation/
  141. texttospeech/
  142. third_party/
  143. tpu/
  144. trace/
  145. translate/
  146. vertexai/
  147. video/
  148. videointelligence/
  149. vision/
  150. vmmigration/
  151. vmwareengine/
  152. vpcaccess/
  153. webrisk/
  154. websecurityscanner/
  155. workflows/
  156. workstations/
  157. .gitignore
  158. .release-please-manifest-individual.json
  159. .release-please-manifest-submodules.json
  160. .release-please-manifest.json
  161. CHANGES.md
  162. CODE_OF_CONDUCT.md
  163. CONTRIBUTING.md
  164. debug.md
  165. doc.go
  166. go.mod
  167. go.sum
  168. go.work
  169. go.work.sum
  170. LICENSE
  171. migration.md
  172. README.md
  173. release-please-config-individual.json
  174. release-please-config-yoshi-submodules.json
  175. release-please-config.json
  176. RELEASING.md
  177. SECURITY.md
  178. 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.21
  • Go 1.20
  • Go 1.19

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:

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