google-apis-datastore_v1 0.5.0 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eb38282d2935c1443d821903cdce8af4626d6fc809995297fcdd99f6ca3f0154
4
- data.tar.gz: f6d4e561f5c696ec300988e4d0d8ee99ef73ab94902681b256c8a4033e79e461
3
+ metadata.gz: 900cdfaa7bf97438bcd3b27e45d5b53fc09d91419ab8d0463f8d15dad661c362
4
+ data.tar.gz: 586028bdc69c6ecb8fb7f3438b6de10bd62c37f9c192141666e14b0965a10f7e
5
5
  SHA512:
6
- metadata.gz: 0ab7f6303ecf2504cb1c38daf49e5707fe0dab0ac01ba35ea10acdc3b1e1286069713dd133d5eb9b0a1fa162c220c3999e7fa60ab09c1aa02d93937f850c9e85
7
- data.tar.gz: a9e325d6990535db385f4cde5eafa7b812a969c5da2b26ef903210e4d2fa9e95d67dd68be88849433f09c5c5070e26ce949da8613b45d2388f2559289648b66e
6
+ metadata.gz: 69f6185c7c2abf662cd8b31ba4f645c4af3665f29c5ec84c96b79a734f669ad64f0b3a11a0c9997dd3eadc1601cbcb62b15b954f2dadcb072cb7184aab6ac8e6
7
+ data.tar.gz: ea722562c6144b5c4f9f253d847ce5343737817a94ae5537df32c676537d93e13c417aa0c161fb0bb008386d5f353f6feb76625df6e61a2c522c918e033fe22f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-datastore_v1
2
2
 
3
+ ### v0.9.0 (2021-11-11)
4
+
5
+ * Regenerated from discovery document revision 20211029
6
+
7
+ ### v0.8.0 (2021-10-20)
8
+
9
+ * Regenerated from discovery document revision 20210901
10
+
11
+ ### v0.7.0 (2021-08-26)
12
+
13
+ * Regenerated from discovery document revision 20210816
14
+
15
+ ### v0.6.0 (2021-06-29)
16
+
17
+ * Regenerated using generator version 0.4.0
18
+
3
19
  ### v0.5.0 (2021-06-24)
4
20
 
5
21
  * Regenerated using generator version 0.3.0
data/OVERVIEW.md CHANGED
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
60
60
 
61
61
  More detailed descriptions of the Google simple REST clients are available in two documents.
62
62
 
63
- * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
- * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
63
+ * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
+ * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Datastore service in particular.)
67
67
 
@@ -370,6 +370,37 @@ module Google
370
370
  end
371
371
  end
372
372
 
373
+ # Metadata for Datastore to Firestore migration operations. The
374
+ # DatastoreFirestoreMigration operation is not started by the end-user via an
375
+ # explicit "creation" method. This is an intentional deviation from the LRO
376
+ # design pattern. This singleton resource can be accessed at: "projects/`
377
+ # project_id`/datastore-firestore-migration"
378
+ class GoogleDatastoreAdminV1DatastoreFirestoreMigrationMetadata
379
+ include Google::Apis::Core::Hashable
380
+
381
+ # The current state of migration from Cloud Datastore to Cloud Firestore in
382
+ # Datastore mode.
383
+ # Corresponds to the JSON property `migrationState`
384
+ # @return [String]
385
+ attr_accessor :migration_state
386
+
387
+ # The current step of migration from Cloud Datastore to Cloud Firestore in
388
+ # Datastore mode.
389
+ # Corresponds to the JSON property `migrationStep`
390
+ # @return [String]
391
+ attr_accessor :migration_step
392
+
393
+ def initialize(**args)
394
+ update!(**args)
395
+ end
396
+
397
+ # Update properties of this object
398
+ def update!(**args)
399
+ @migration_state = args[:migration_state] if args.key?(:migration_state)
400
+ @migration_step = args[:migration_step] if args.key?(:migration_step)
401
+ end
402
+ end
403
+
373
404
  # Identifies a subset of entities in a project. This is specified as
374
405
  # combinations of kinds and namespaces (either or both of which may be all, as
375
406
  # described in the following examples). Example usage: Entire project: kinds=[],
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatastoreV1
18
18
  # Version of the google-apis-datastore_v1 gem
19
- GEM_VERSION = "0.5.0"
19
+ GEM_VERSION = "0.9.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.3.0"
22
+ GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210426"
25
+ REVISION = "20211029"
26
26
  end
27
27
  end
28
28
  end
@@ -100,6 +100,12 @@ module Google
100
100
  include Google::Apis::Core::JsonObjectSupport
101
101
  end
102
102
 
103
+ class GoogleDatastoreAdminV1DatastoreFirestoreMigrationMetadata
104
+ class Representation < Google::Apis::Core::JsonRepresentation; end
105
+
106
+ include Google::Apis::Core::JsonObjectSupport
107
+ end
108
+
103
109
  class GoogleDatastoreAdminV1EntityFilter
104
110
  class Representation < Google::Apis::Core::JsonRepresentation; end
105
111
 
@@ -502,6 +508,14 @@ module Google
502
508
  end
503
509
  end
504
510
 
511
+ class GoogleDatastoreAdminV1DatastoreFirestoreMigrationMetadata
512
+ # @private
513
+ class Representation < Google::Apis::Core::JsonRepresentation
514
+ property :migration_state, as: 'migrationState'
515
+ property :migration_step, as: 'migrationStep'
516
+ end
517
+ end
518
+
505
519
  class GoogleDatastoreAdminV1EntityFilter
506
520
  # @private
507
521
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -30,7 +30,7 @@ module Google
30
30
  # This is NOT the gem version.
31
31
  VERSION = 'V1'
32
32
 
33
- # See, edit, configure, and delete your Google Cloud Platform data
33
+ # See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
34
34
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
35
35
 
36
36
  # View and manage your Google Cloud Datastore data
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datastore_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-28 00:00:00.000000000 Z
11
+ date: 2021-11-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.3'
19
+ version: '0.4'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.3'
29
+ version: '0.4'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -57,9 +57,9 @@ licenses:
57
57
  - Apache-2.0
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
- changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-datastore_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-datastore_v1/v0.5.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-datastore_v1
60
+ changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datastore_v1/CHANGELOG.md
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datastore_v1/v0.9.0
62
+ source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datastore_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
65
65
  require_paths: