google-apis-datastore_v1beta3 0.8.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ed4f0db281b380bd17cafe6b396974158da75014b06d747a0d4241071ab741b8
|
4
|
+
data.tar.gz: 807e440b344e8c3165abd42e9e6275cacb284885fca6a677a065ba4c6a530893
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: deb687c89524de18ef2843f70c613c602b8058c82a81e14fa68858a31809e175f75cce14067cf69b3b6fa8bd8368e97704538b65430e8adb4ef1584369ef2915
|
7
|
+
data.tar.gz: ea2544c0430d6f7daf32333f17126d83994b3fe1a13e4137e864f886d1b083f69165e08c17dc8ebafb3c4c7a2de4b22c478efc084d1c55a46bd96de1832970c0
|
data/CHANGELOG.md
CHANGED
@@ -353,6 +353,37 @@ module Google
|
|
353
353
|
end
|
354
354
|
end
|
355
355
|
|
356
|
+
# Metadata for Datastore to Firestore migration operations. The
|
357
|
+
# DatastoreFirestoreMigration operation is not started by the end-user via an
|
358
|
+
# explicit "creation" method. This is an intentional deviation from the LRO
|
359
|
+
# design pattern. This singleton resource can be accessed at: "projects/`
|
360
|
+
# project_id`/datastore-firestore-migration"
|
361
|
+
class GoogleDatastoreAdminV1DatastoreFirestoreMigrationMetadata
|
362
|
+
include Google::Apis::Core::Hashable
|
363
|
+
|
364
|
+
# The current state of migration from Cloud Datastore to Cloud Firestore in
|
365
|
+
# Datastore mode.
|
366
|
+
# Corresponds to the JSON property `migrationState`
|
367
|
+
# @return [String]
|
368
|
+
attr_accessor :migration_state
|
369
|
+
|
370
|
+
# The current step of migration from Cloud Datastore to Cloud Firestore in
|
371
|
+
# Datastore mode.
|
372
|
+
# Corresponds to the JSON property `migrationStep`
|
373
|
+
# @return [String]
|
374
|
+
attr_accessor :migration_step
|
375
|
+
|
376
|
+
def initialize(**args)
|
377
|
+
update!(**args)
|
378
|
+
end
|
379
|
+
|
380
|
+
# Update properties of this object
|
381
|
+
def update!(**args)
|
382
|
+
@migration_state = args[:migration_state] if args.key?(:migration_state)
|
383
|
+
@migration_step = args[:migration_step] if args.key?(:migration_step)
|
384
|
+
end
|
385
|
+
end
|
386
|
+
|
356
387
|
# Identifies a subset of entities in a project. This is specified as
|
357
388
|
# combinations of kinds and namespaces (either or both of which may be all, as
|
358
389
|
# described in the following examples). Example usage: Entire project: kinds=[],
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DatastoreV1beta3
|
18
18
|
# Version of the google-apis-datastore_v1beta3 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.9.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20211029"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -94,6 +94,12 @@ module Google
|
|
94
94
|
include Google::Apis::Core::JsonObjectSupport
|
95
95
|
end
|
96
96
|
|
97
|
+
class GoogleDatastoreAdminV1DatastoreFirestoreMigrationMetadata
|
98
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
|
+
|
100
|
+
include Google::Apis::Core::JsonObjectSupport
|
101
|
+
end
|
102
|
+
|
97
103
|
class GoogleDatastoreAdminV1EntityFilter
|
98
104
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
105
|
|
@@ -442,6 +448,14 @@ module Google
|
|
442
448
|
end
|
443
449
|
end
|
444
450
|
|
451
|
+
class GoogleDatastoreAdminV1DatastoreFirestoreMigrationMetadata
|
452
|
+
# @private
|
453
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
454
|
+
property :migration_state, as: 'migrationState'
|
455
|
+
property :migration_step, as: 'migrationStep'
|
456
|
+
end
|
457
|
+
end
|
458
|
+
|
445
459
|
class GoogleDatastoreAdminV1EntityFilter
|
446
460
|
# @private
|
447
461
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-datastore_v1beta3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 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-
|
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
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datastore_v1beta3/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datastore_v1beta3/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datastore_v1beta3/v0.9.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datastore_v1beta3
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|