google-apis-datastore_v1 0.6.0 → 0.10.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: bb7200ac69f4837108344caf3dd863c60cd5389cf2015a1eabea9470d8d64bf0
4
- data.tar.gz: 2c3de87278a49c19a8605b50c261d856b9485e2e6126fecff06ebc1bcf1363ed
3
+ metadata.gz: 9ed315bcc5ddfe8f213b42c76fde69705a1b63da4d017c9af987797ef2d6ddd5
4
+ data.tar.gz: 179ffc7e73c3829c4030da3340089c310b11a634f65dc16215607c2becf26982
5
5
  SHA512:
6
- metadata.gz: 1e9df0b712cd952a91bfad99a98107125b8eefe33f8feba7ad949eb43d7ef268e2b79cf84458b7d3c4d225772270b1f7d640601c051988cc285992b3713bbd46
7
- data.tar.gz: 57356e2928bf06ea3deaf1cd6a5ea9c0823e88ba3a1fee0f76aab09b0ff418bad0e1a10faf3480f29d8756e5c16bad2df3e29a879299acdf65772ba2d7c7a75b
6
+ metadata.gz: '070874639d3adfbabd9325431a54d9a78a1474ce01b790dabb79563bd2b0a06f63752e38f85860ac6be81867d15677a6ba383bff9f15ea082b1b1c550a11982a'
7
+ data.tar.gz: 954ff714b3591f00c6238df97e2cb6cb65d5a5e47405a26f336d75886a608d7be964705f7fc53449f89676145796003f0f129c2f5c70fc9cec84a8a2e459a3d2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-datastore_v1
2
2
 
3
+ ### v0.10.0 (2021-12-14)
4
+
5
+ * Unspecified changes
6
+
7
+ ### v0.9.0 (2021-11-11)
8
+
9
+ * Regenerated from discovery document revision 20211029
10
+
11
+ ### v0.8.0 (2021-10-20)
12
+
13
+ * Regenerated from discovery document revision 20210901
14
+
15
+ ### v0.7.0 (2021-08-26)
16
+
17
+ * Regenerated from discovery document revision 20210816
18
+
3
19
  ### v0.6.0 (2021-06-29)
4
20
 
5
21
  * Regenerated using generator version 0.4.0
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/datastore_v1"
51
51
  client = Google::Apis::DatastoreV1::DatastoreService.new
52
52
 
53
53
  # Authenticate calls
54
- client.authentication = # ... use the googleauth gem to create credentials
54
+ client.authorization = # ... use the googleauth gem to create credentials
55
55
  ```
56
56
 
57
57
  See the class reference docs for information on the methods you can call from a client.
@@ -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.6.0"
19
+ GEM_VERSION = "0.10.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 = "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.6.0
4
+ version: 0.10.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-07-05 00:00:00.000000000 Z
11
+ date: 2022-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -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.6.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.10.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:
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.2.17
78
+ rubygems_version: 3.3.4
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Datastore API V1