google-apis-keep_v1 0.2.0 → 0.3.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: 5d8157368eb98374e6078a951b3116c3a89e033f3129e2b70b33b17b98122496
4
- data.tar.gz: 12d8865c5d697a5ad823076533402ae02e941f75d122ff3b6f85f25a7ed09756
3
+ metadata.gz: e12f7cb3ba77c8acc786902c14d5b8184426f2b489306e6df91f3616a06c6867
4
+ data.tar.gz: 6b143ccfd11a12a0727da243fd2b5d3ba47018eb4d0f1a0ef08f4cb9e8bd3373
5
5
  SHA512:
6
- metadata.gz: '0925a39f6b372aec50fc162469754d5820fe20e188160310395facd5d34177cb6cef0a41fa3da14667c5ff5e19ca4989360bf040409b68f6cda5d17cb0f15875'
7
- data.tar.gz: 51c6a93ef96c8c58032b325383b507b96ac7ef9788763288a51cc2d048ac12b1040633902b363e5e7597f9a095f23a1aeeb2a24e2ba905e6ae5eb0696a2af198
6
+ metadata.gz: ed4da07003afe34b3966ac612792f4d9b09e9ae01e8c80c96de4c87db031a4fb151fe91b6784bd9538af39ce1f1856880df40f4e0ec453025b1abd8c7dec75d0
7
+ data.tar.gz: 1454df7760884c8837f53baca22d492b80f5a194695573bc06ecbfc59cf7f9e016cd6c81705fba403e5dbed2477099c81a485fd7724241fc2eca2dedccddda06
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-keep_v1
2
2
 
3
+ ### v0.3.0 (2021-06-24)
4
+
5
+ * Regenerated from discovery document revision 20210621
6
+
3
7
  ### v0.2.0 (2021-06-15)
4
8
 
5
9
  * Regenerated from discovery document revision 20210608
@@ -21,7 +21,8 @@ module Google
21
21
  module Apis
22
22
  # Google Keep API
23
23
  #
24
- # Allows clients to create, read, and write their Google Keep Notes.
24
+ # This API is an enterprise-only API used to create and manage the Keep notes
25
+ # within your domain, including resolving issues identified by CASB software.
25
26
  #
26
27
  # @see https://support.google.com/keep
27
28
  module KeepV1
@@ -237,7 +237,7 @@ module Google
237
237
  end
238
238
  end
239
239
 
240
- # The response when listing a page of notes (see KeepService documentation).
240
+ # The response when listing a page of notes.
241
241
  class ListNotesResponse
242
242
  include Google::Apis::Core::Hashable
243
243
 
@@ -298,15 +298,15 @@ module Google
298
298
  # @return [String]
299
299
  attr_accessor :title
300
300
 
301
- # Output only. If this note has been trashed, when that happened. If trashed,
302
- # the note will eventually be deleted. If the note is not trashed, this is not
303
- # set (and the trashed field is false).
301
+ # Output only. When this note was trashed. If `trashed`, the note is eventually
302
+ # deleted. If the note is not trashed, this field is not set (and the trashed
303
+ # field is `false`).
304
304
  # Corresponds to the JSON property `trashTime`
305
305
  # @return [String]
306
306
  attr_accessor :trash_time
307
307
 
308
- # Output only. True if this note has been trashed. If trashed, the note will
309
- # eventually be deleted.
308
+ # Output only. `true` if this note has been trashed. If trashed, the note is
309
+ # eventually deleted.
310
310
  # Corresponds to the JSON property `trashed`
311
311
  # @return [Boolean]
312
312
  attr_accessor :trashed
@@ -347,9 +347,9 @@ module Google
347
347
  attr_accessor :deleted
348
348
  alias_method :deleted?, :deleted
349
349
 
350
- # The email associated with the member. If set on create, the email field in the
351
- # User or Group message must either be empty or match this field. On read, may
352
- # be unset if the member does not have an associated email.
350
+ # The email associated with the member. If set on create, the `email` field in
351
+ # the `User` or `Group` message must either be empty or match this field. On
352
+ # read, may be unset if the member does not have an associated email.
353
353
  # Corresponds to the JSON property `email`
354
354
  # @return [String]
355
355
  attr_accessor :email
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module KeepV1
18
18
  # Version of the google-apis-keep_v1 gem
19
- GEM_VERSION = "0.2.0"
19
+ GEM_VERSION = "0.3.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.3.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210608"
25
+ REVISION = "20210621"
26
26
  end
27
27
  end
28
28
  end
@@ -22,7 +22,8 @@ module Google
22
22
  module KeepV1
23
23
  # Google Keep API
24
24
  #
25
- # Allows clients to create, read, and write their Google Keep Notes.
25
+ # This API is an enterprise-only API used to create and manage the Keep notes
26
+ # within your domain, including resolving issues identified by CASB software.
26
27
  #
27
28
  # @example
28
29
  # require 'google/apis/keep_v1'
@@ -195,10 +196,10 @@ module Google
195
196
  # ListNotes return consistent results in the face of concurrent changes, or
196
197
  # signals that it cannot with an ABORTED error.
197
198
  # @param [String] filter
198
- # Filter for list results. If no filter is supplied, the "-trashed" filter is
199
- # applied by default. Valid fields to filter by are: - `create_time` - `
200
- # update_time` - `trash_time` - `trashed` Filter syntax follows the Google AIP
201
- # filtering spec: https://aip.dev/160
199
+ # Filter for list results. If no filter is supplied, the `trashed` filter is
200
+ # applied by default. Valid fields to filter by are: `create_time`, `update_time`
201
+ # , `trash_time`, and `trashed`. Filter syntax follows the [Google AIP filtering
202
+ # spec](https://aip.dev/160).
202
203
  # @param [Fixnum] page_size
203
204
  # The maximum number of results to return.
204
205
  # @param [String] page_token
@@ -232,7 +233,7 @@ module Google
232
233
  execute_or_queue_command(command, &block)
233
234
  end
234
235
 
235
- # Creates one or more permission on the note. Only permissions with the `WRITER`
236
+ # Creates one or more permissions on the note. Only permissions with the `WRITER`
236
237
  # role may be created. If adding any permission fails, then the entire request
237
238
  # fails and no changes are made.
238
239
  # @param [String] parent
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-keep_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.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-21 00:00:00.000000000 Z
11
+ date: 2021-06-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.1'
19
+ version: '0.3'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 2.a
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '0.3'
30
+ - - "<"
25
31
  - !ruby/object:Gem::Version
26
- version: '0.1'
32
+ version: 2.a
27
33
  description: This is the simple REST client for Google Keep API V1. Simple REST clients
28
34
  are Ruby client libraries that provide access to Google services via their HTTP
29
35
  REST API endpoints. These libraries are generated and updated automatically based
@@ -52,7 +58,7 @@ licenses:
52
58
  metadata:
53
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-keep_v1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-keep_v1/v0.2.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-keep_v1/v0.3.0
56
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-keep_v1
57
63
  post_install_message:
58
64
  rdoc_options: []