Stored Procedures
Stored procedures are function-like interfaces that extend the functionality of the provider beyond simple SELECT/INSERT/DELETE operations with Google Cloud Storage.
Stored procedures accept a list of parameters, perform their intended function, and then return any relevant response data from Google Cloud Storage, along with an indication of whether the procedure succeeded or failed.
CData ADO.NET Provider for Google Cloud Storage Stored Procedures
| Name | Description |
| CopyObject | Copies an object from one bucket to another. |
| CreateBucket | Creates a bucket. The authenticated user must have the storage.buckets.create IAM permission to use this StoredProcedure. |
| CreateManagedFolder | Creates a managed folder within a bucket. Requires hierarchical namespace to be enabled on the bucket. |
| DeleteManagedFolder | Deletes a managed folder within a bucket. |
| DeleteObject | Deletes an object from a bucket. |
| DownloadObject | Passes the name of a bucket and object to download. |
| EnableVersioning | Enables object versioning in a specific bucket. |
| GetOAuthAccessToken | Obtains the OAuth access token to be used for authentication with various Google services. |
| GetOAuthAuthorizationURL | Obtains the OAuth authorization URL used for authentication with various Google services. |
| MoveObject | Moves an object from one bucket to another. |
| RefreshOAuthAccessToken | Obtains the OAuth access token to be used for authentication with various Google services. |
| SignBlob | Create a signature from a string-to-sign or policy document. Requires one of the following OAuth scopes: https://www.googleapis.com/auth/iam or https://www.googleapis.com/auth/cloud-platform |
| SignURL | Generates a V4 signed URL that grants time-limited access to a Cloud Storage object without requiring Google credentials when the request is made. |
| UpdateBucket | Updates an existing bucket's properties. The authenticated user must have the storage.buckets.update IAM permission to use this StoredProcedure. |
| UploadObject | Uploads objects in a single operation. Use the SimpleUploadLimit connection property to adjust the threshold in bytes in order to perform a multipart upload. |