google-apis-vault_v1 0.10.0 → 0.13.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: 3c65a38a0bb7b20a1cdfafdb462c4edcd3b231d4ba2fa408880bcaa6f7358fe4
4
- data.tar.gz: ca6b20c7f2edcc71a4662c335ec609000942e5e6ff1c2bac86a708721875ba7f
3
+ metadata.gz: 3fa024ff8ca5b9b0f7dffdd4ef2861ebcc90fc64fd1f63930f0444491268a9ab
4
+ data.tar.gz: c96e3928e171460bf727381d76565a5a51ed0626e932d47496e098b6300aa1db
5
5
  SHA512:
6
- metadata.gz: 40d4670d981d2c2d9d554569d1c7f6612dc34c30f88b247b0a49a833c456cffa1d9e23c067b365f7a4d6689d34f01e9885aa6e273460a57d1d780c8e50649ce9
7
- data.tar.gz: 56118498b622a8acb690af60f56e8399cee25e78f391708a5934a0d3678594a9ca64b31e761365a8f0ddaeb714c783e181e219630211d05a07a8f52bc64e667f
6
+ metadata.gz: 48068bbd3a50f5930485871b1e01b96f754f2c61e467cca54eae0b7392480c72135f540929d189fc78fe6a76a82eadf5374254ad83c3070d590f0931ac685b38
7
+ data.tar.gz: f8a931a6194157a33b9c14be40edd99fe6396c63e8669b52dbe76f8000fd74240d108b08e20dca2d465eff0b4ea4d1bb5b0172be61bf1331b0528362afc01d32
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-vault_v1
2
2
 
3
+ ### v0.13.0 (2022-04-06)
4
+
5
+ * Regenerated from discovery document revision 20220331
6
+
7
+ ### v0.12.0 (2022-03-23)
8
+
9
+ * Regenerated from discovery document revision 20220316
10
+
11
+ ### v0.11.0 (2022-02-25)
12
+
13
+ * Regenerated from discovery document revision 20220222
14
+ * Regenerated using generator version 0.4.1
15
+
3
16
  ### v0.10.0 (2021-12-14)
4
17
 
5
18
  * Unspecified changes
@@ -482,6 +482,13 @@ module Google
482
482
  class DriveOptions
483
483
  include Google::Apis::Core::Hashable
484
484
 
485
+ # Set whether the results include only content encrypted with [Google Workspace
486
+ # Client-side encryption](https://support.google.com/a?p=cse_ov) content, only
487
+ # unencrypted content, or both. Defaults to both. Currently supported for Drive.
488
+ # Corresponds to the JSON property `clientSideEncryptedOption`
489
+ # @return [String]
490
+ attr_accessor :client_side_encrypted_option
491
+
485
492
  # Set to **true** to include shared drives.
486
493
  # Corresponds to the JSON property `includeSharedDrives`
487
494
  # @return [Boolean]
@@ -507,6 +514,7 @@ module Google
507
514
 
508
515
  # Update properties of this object
509
516
  def update!(**args)
517
+ @client_side_encrypted_option = args[:client_side_encrypted_option] if args.key?(:client_side_encrypted_option)
510
518
  @include_shared_drives = args[:include_shared_drives] if args.key?(:include_shared_drives)
511
519
  @include_team_drives = args[:include_team_drives] if args.key?(:include_team_drives)
512
520
  @version_date = args[:version_date] if args.key?(:version_date)
@@ -516,8 +524,7 @@ module Google
516
524
  # A generic empty message that you can re-use to avoid defining duplicated empty
517
525
  # messages in your APIs. A typical example is to use it as the request or the
518
526
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
519
- # protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
520
- # `Empty` is empty JSON object ````.
527
+ # protobuf.Empty) returns (google.protobuf.Empty); `
521
528
  class Empty
522
529
  include Google::Apis::Core::Hashable
523
530
 
@@ -562,7 +569,8 @@ module Google
562
569
  # @return [String]
563
570
  attr_accessor :matter_id
564
571
 
565
- # The export name.
572
+ # The export name. Don't use special characters (~!$'(),;@:/?) in the name, they
573
+ # can prevent you from downloading exports.
566
574
  # Corresponds to the JSON property `name`
567
575
  # @return [String]
568
576
  attr_accessor :name
@@ -1289,6 +1297,12 @@ module Google
1289
1297
  attr_accessor :show_confidential_mode_content
1290
1298
  alias_method :show_confidential_mode_content?, :show_confidential_mode_content
1291
1299
 
1300
+ # To use the new export system, set to **true**.
1301
+ # Corresponds to the JSON property `useNewExport`
1302
+ # @return [Boolean]
1303
+ attr_accessor :use_new_export
1304
+ alias_method :use_new_export?, :use_new_export
1305
+
1292
1306
  def initialize(**args)
1293
1307
  update!(**args)
1294
1308
  end
@@ -1297,6 +1311,7 @@ module Google
1297
1311
  def update!(**args)
1298
1312
  @export_format = args[:export_format] if args.key?(:export_format)
1299
1313
  @show_confidential_mode_content = args[:show_confidential_mode_content] if args.key?(:show_confidential_mode_content)
1314
+ @use_new_export = args[:use_new_export] if args.key?(:use_new_export)
1300
1315
  end
1301
1316
  end
1302
1317
 
@@ -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.10.0"
19
+ GEM_VERSION = "0.13.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211101"
25
+ REVISION = "20220331"
26
26
  end
27
27
  end
28
28
  end
@@ -550,6 +550,7 @@ module Google
550
550
  class DriveOptions
551
551
  # @private
552
552
  class Representation < Google::Apis::Core::JsonRepresentation
553
+ property :client_side_encrypted_option, as: 'clientSideEncryptedOption'
553
554
  property :include_shared_drives, as: 'includeSharedDrives'
554
555
  property :include_team_drives, as: 'includeTeamDrives'
555
556
  property :version_date, as: 'versionDate'
@@ -796,6 +797,7 @@ module Google
796
797
  class Representation < Google::Apis::Core::JsonRepresentation
797
798
  property :export_format, as: 'exportFormat'
798
799
  property :show_confidential_mode_content, as: 'showConfidentialModeContent'
800
+ property :use_new_export, as: 'useNewExport'
799
801
  end
800
802
  end
801
803
 
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.10.0
4
+ version: 0.13.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: 2022-01-10 00:00:00.000000000 Z
11
+ date: 2022-04-11 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-vault_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-vault_v1/v0.10.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-vault_v1/v0.13.0
62
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: []
@@ -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.3.4
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Google Vault API V1