google-apis-vault_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: b705776a312e7d2b0eff0a4151e911ae0388722d30adb8094c2a17d6e2c19ed7
4
- data.tar.gz: 486e349166e5c89b297889a1dd9f91f5ecb893837d89d2408970098b1c2d64ea
3
+ metadata.gz: 3c65a38a0bb7b20a1cdfafdb462c4edcd3b231d4ba2fa408880bcaa6f7358fe4
4
+ data.tar.gz: ca6b20c7f2edcc71a4662c335ec609000942e5e6ff1c2bac86a708721875ba7f
5
5
  SHA512:
6
- metadata.gz: c8859c33a20f5869bfd68149ea4345103a6a870f6ada74a651ebb648a8d68bd6107509f2f962f847b536f27956fc048e5a94d31b390a81df14407c799a0591ea
7
- data.tar.gz: 34ad12ac25f14a5df30c3da458c5427255c56a05abb37146233d8ce6cf26dea21900c2630878f35d916b1ad46938ad1307b46ae337513f44ca298ce27d9e3af1
6
+ metadata.gz: 40d4670d981d2c2d9d554569d1c7f6612dc34c30f88b247b0a49a833c456cffa1d9e23c067b365f7a4d6689d34f01e9885aa6e273460a57d1d780c8e50649ce9
7
+ data.tar.gz: 56118498b622a8acb690af60f56e8399cee25e78f391708a5934a0d3678594a9ca64b31e761365a8f0ddaeb714c783e181e219630211d05a07a8f52bc64e667f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-vault_v1
2
2
 
3
+ ### v0.10.0 (2021-12-14)
4
+
5
+ * Unspecified changes
6
+
7
+ ### v0.9.0 (2021-11-04)
8
+
9
+ * Regenerated from discovery document revision 20211101
10
+
11
+ ### v0.8.0 (2021-10-21)
12
+
13
+ * Unspecified changes
14
+
15
+ ### v0.7.0 (2021-08-27)
16
+
17
+ * Regenerated from discovery document revision 20210817
18
+
3
19
  ### v0.6.0 (2021-06-29)
4
20
 
5
21
  * Regenerated using generator version 0.4.0
data/OVERVIEW.md CHANGED
@@ -1,6 +1,6 @@
1
- # Simple REST client for version V1 of the G Suite Vault API
1
+ # Simple REST client for version V1 of the Google Vault API
2
2
 
3
- This is a simple client library for version V1 of the G Suite Vault API. It provides:
3
+ This is a simple client library for version V1 of the Google Vault API. It provides:
4
4
 
5
5
  * A client object that connects to the HTTP/JSON REST endpoint for the service.
6
6
  * Ruby objects for data structures related to the service.
@@ -51,7 +51,7 @@ require "google/apis/vault_v1"
51
51
  client = Google::Apis::VaultV1::VaultService.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,12 +60,12 @@ 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 Vault service in particular.)
67
67
 
68
- For reference information on specific calls in the G Suite Vault API, see the {Google::Apis::VaultV1::VaultService class reference docs}.
68
+ For reference information on specific calls in the Google Vault API, see the {Google::Apis::VaultV1::VaultService class reference docs}.
69
69
 
70
70
  ## Which client should I use?
71
71
 
@@ -1247,9 +1247,10 @@ module Google
1247
1247
  # @return [Fixnum]
1248
1248
  attr_accessor :matching_accounts_count
1249
1249
 
1250
- # When **DataScope** is **HELD_DATA**, the number of accounts in the request
1251
- # that are not queried because they are not on hold. For other data scopes, this
1252
- # field is not set.
1250
+ # When **DataScope** is **HELD_DATA** and when account emails are passed in
1251
+ # explicitly, the list of accounts in the request that are not queried because
1252
+ # they are not on hold in the matter. For other data scopes, this field is not
1253
+ # set.
1253
1254
  # Corresponds to the JSON property `nonQueryableAccounts`
1254
1255
  # @return [Array<String>]
1255
1256
  attr_accessor :non_queryable_accounts
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module VaultV1
18
18
  # Version of the google-apis-vault_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 = "20210621"
25
+ REVISION = "20211101"
26
26
  end
27
27
  end
28
28
  end
@@ -20,7 +20,7 @@ require 'google/apis/errors'
20
20
  module Google
21
21
  module Apis
22
22
  module VaultV1
23
- # G Suite Vault API
23
+ # Google Vault API
24
24
  #
25
25
  # Retention and eDiscovery for Google Workspace. To work with Vault resources,
26
26
  # the account must have the [required Vault privileges](https://support.google.
@@ -19,7 +19,7 @@ require 'google/apis/vault_v1/gem_version.rb'
19
19
 
20
20
  module Google
21
21
  module Apis
22
- # G Suite Vault API
22
+ # Google Vault API
23
23
  #
24
24
  # Retention and eDiscovery for Google Workspace. To work with Vault resources,
25
25
  # the account must have the [required Vault privileges](https://support.google.
@@ -31,7 +31,7 @@ module Google
31
31
  #
32
32
  # @see https://developers.google.com/vault
33
33
  module VaultV1
34
- # Version of the G Suite Vault API this client connects to.
34
+ # Version of the Google Vault API this client connects to.
35
35
  # This is NOT the gem version.
36
36
  VERSION = 'V1'
37
37
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-vault_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
@@ -30,13 +30,13 @@ dependencies:
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
33
- description: This is the simple REST client for G Suite Vault API V1. Simple REST
34
- clients are Ruby client libraries that provide access to Google services via their
35
- HTTP REST API endpoints. These libraries are generated and updated automatically
36
- based on the discovery documents published by the service, and they handle most
37
- concerns such as authentication, pagination, retry, timeouts, and logging. You can
38
- use this client to access the G Suite Vault API, but note that some services may
39
- provide a separate modern client that is easier to use.
33
+ description: This is the simple REST client for Google Vault API V1. Simple REST clients
34
+ are Ruby client libraries that provide access to Google services via their HTTP
35
+ REST API endpoints. These libraries are generated and updated automatically based
36
+ on the discovery documents published by the service, and they handle most concerns
37
+ such as authentication, pagination, retry, timeouts, and logging. You can use this
38
+ client to access the Google Vault API, but note that some services may provide a
39
+ separate modern client that is easier to use.
40
40
  email: googleapis-packages@google.com
41
41
  executables: []
42
42
  extensions: []
@@ -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-vault_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-vault_v1/v0.6.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-vault_v1
60
+ changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vault_v1/CHANGELOG.md
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-vault_v1/v0.10.0
62
+ source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vault_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
65
65
  require_paths:
@@ -75,8 +75,8 @@ 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
- summary: Simple REST client for G Suite Vault API V1
81
+ summary: Simple REST client for Google Vault API V1
82
82
  test_files: []