gcloud icon indicating copy to clipboard operation
gcloud copied to clipboard

High-level interfaces to Google Cloud Platform APIs

Results 42 gcloud issues
Sort by recently updated
recently updated
newest added

When updating object metadata, GSUtil uses a `PATCH` call to allow partial updates and prevent overwriting the metadata completely. This library instead _replaces_ the metadata, without providing access to the...

Related to #13. I have a datastore with a List of Entities that I'm trying to interact with from dart.

The assertion `assert(isLast != moreBatches);` in https://github.com/dart-lang/gcloud/blob/master/lib/src/datastore_impl.dart#L555 failed because `moreResults == 'NOT_FINISHED'` instead of `'MORE_RESULTS_AFTER_LIMIT'`. See MoreResultsType in https://cloud.google.com/datastore/docs/reference/data/rpc/google.datastore.v1

We need to discuss how to handle errors consistently: - what errors to let through from lower levels - what errors to wrap into new errors - how many exception...

We should (optionally) retry queries that fail with HTTP 5xx and 429 response codes using truncated exponential backoff. https://cloud.google.com/storage/docs/exponential-backoff outlines how it should be implemented

type-bug

As I've come to understand it there is some special code handling resumable uploads in `googleapis` package... We should ensure that the same retry strategy is employed when doing non-resumable...

Right now, when defining a model like this: ```dart @Kind(idType: IdType.String) class Show extends Model { // [...] } ``` and then inserting an instance of this model in the...

The package description in pubspec.yaml is very minimal > Dart gcloud APIs Please consider improving the description and mention phrases like "google cloud". This data is used for search in...

The tests in this package only run correctly when run as standalone dart programs, such as by: `dart test/db_all_e2e_test.dart` and do not work when run using package test's runner, such...

type-enhancement

The general [Google datastore documentation](https://cloud.google.com/datastore/docs/concepts/queries#cursors_limits_and_offsets) suggests that integer offsets should be avoided. > Although Cloud Datastore supports integer offsets, you should avoid using them. Instead, use cursors. Using an offset...