google-apis-vault_v1 0.11.0 → 0.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/lib/google/apis/vault_v1/classes.rb +36 -3
- data/lib/google/apis/vault_v1/gem_version.rb +2 -2
- data/lib/google/apis/vault_v1/representations.rb +16 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9f0cd71e84d86c058bd7ebf10eb71bc648b102d009383e3494c1965eb7906d07
|
4
|
+
data.tar.gz: 1cae6720ab532ecfe959a93f61be7048fa1ddbfc47f8f3abe94c05916e995e6c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1319c24420a0db59ede28b9b360964bb0d73695e4a50b26bf97fe1fd6dee88edc81b69ca33be6138d6bd6341877bd8350d2959da137278b8bfa8e4dcc8753521
|
7
|
+
data.tar.gz: da61a233f2aa9ce40ad12b6499e1d26c2a55a461ff960520483b1d671ee20fc5c4765fc61a7bf1860452fcee3521e53740ee8f0f6bb688ea2f308bbc7f7c2f36
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-vault_v1
|
2
2
|
|
3
|
+
### v0.14.0 (2022-04-28)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220423
|
6
|
+
|
7
|
+
### v0.13.0 (2022-04-06)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220331
|
10
|
+
|
11
|
+
### v0.12.0 (2022-03-23)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220316
|
14
|
+
|
3
15
|
### v0.11.0 (2022-02-25)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220222
|
@@ -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); `
|
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
|
@@ -1553,6 +1561,11 @@ module Google
|
|
1553
1561
|
# @return [Google::Apis::VaultV1::SharedDriveInfo]
|
1554
1562
|
attr_accessor :shared_drive_info
|
1555
1563
|
|
1564
|
+
# The published site URLs of new Google Sites to search
|
1565
|
+
# Corresponds to the JSON property `sitesUrlInfo`
|
1566
|
+
# @return [Google::Apis::VaultV1::SitesUrlInfo]
|
1567
|
+
attr_accessor :sites_url_info
|
1568
|
+
|
1556
1569
|
# The start time for the search query. Specify in GMT. The value is rounded to
|
1557
1570
|
# 12 AM on the specified date.
|
1558
1571
|
# Corresponds to the JSON property `startTime`
|
@@ -1602,6 +1615,7 @@ module Google
|
|
1602
1615
|
@org_unit_info = args[:org_unit_info] if args.key?(:org_unit_info)
|
1603
1616
|
@search_method = args[:search_method] if args.key?(:search_method)
|
1604
1617
|
@shared_drive_info = args[:shared_drive_info] if args.key?(:shared_drive_info)
|
1618
|
+
@sites_url_info = args[:sites_url_info] if args.key?(:sites_url_info)
|
1605
1619
|
@start_time = args[:start_time] if args.key?(:start_time)
|
1606
1620
|
@team_drive_info = args[:team_drive_info] if args.key?(:team_drive_info)
|
1607
1621
|
@terms = args[:terms] if args.key?(:terms)
|
@@ -1773,6 +1787,25 @@ module Google
|
|
1773
1787
|
end
|
1774
1788
|
end
|
1775
1789
|
|
1790
|
+
# The published site URLs of new Google Sites to search
|
1791
|
+
class SitesUrlInfo
|
1792
|
+
include Google::Apis::Core::Hashable
|
1793
|
+
|
1794
|
+
# A list of published site URLs.
|
1795
|
+
# Corresponds to the JSON property `urls`
|
1796
|
+
# @return [Array<String>]
|
1797
|
+
attr_accessor :urls
|
1798
|
+
|
1799
|
+
def initialize(**args)
|
1800
|
+
update!(**args)
|
1801
|
+
end
|
1802
|
+
|
1803
|
+
# Update properties of this object
|
1804
|
+
def update!(**args)
|
1805
|
+
@urls = args[:urls] if args.key?(:urls)
|
1806
|
+
end
|
1807
|
+
end
|
1808
|
+
|
1776
1809
|
# The `Status` type defines a logical error model that is suitable for different
|
1777
1810
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
1778
1811
|
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.14.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220423"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -358,6 +358,12 @@ module Google
|
|
358
358
|
include Google::Apis::Core::JsonObjectSupport
|
359
359
|
end
|
360
360
|
|
361
|
+
class SitesUrlInfo
|
362
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
363
|
+
|
364
|
+
include Google::Apis::Core::JsonObjectSupport
|
365
|
+
end
|
366
|
+
|
361
367
|
class Status
|
362
368
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
363
369
|
|
@@ -550,6 +556,7 @@ module Google
|
|
550
556
|
class DriveOptions
|
551
557
|
# @private
|
552
558
|
class Representation < Google::Apis::Core::JsonRepresentation
|
559
|
+
property :client_side_encrypted_option, as: 'clientSideEncryptedOption'
|
553
560
|
property :include_shared_drives, as: 'includeSharedDrives'
|
554
561
|
property :include_team_drives, as: 'includeTeamDrives'
|
555
562
|
property :version_date, as: 'versionDate'
|
@@ -868,6 +875,8 @@ module Google
|
|
868
875
|
property :search_method, as: 'searchMethod'
|
869
876
|
property :shared_drive_info, as: 'sharedDriveInfo', class: Google::Apis::VaultV1::SharedDriveInfo, decorator: Google::Apis::VaultV1::SharedDriveInfo::Representation
|
870
877
|
|
878
|
+
property :sites_url_info, as: 'sitesUrlInfo', class: Google::Apis::VaultV1::SitesUrlInfo, decorator: Google::Apis::VaultV1::SitesUrlInfo::Representation
|
879
|
+
|
871
880
|
property :start_time, as: 'startTime'
|
872
881
|
property :team_drive_info, as: 'teamDriveInfo', class: Google::Apis::VaultV1::TeamDriveInfo, decorator: Google::Apis::VaultV1::TeamDriveInfo::Representation
|
873
882
|
|
@@ -933,6 +942,13 @@ module Google
|
|
933
942
|
end
|
934
943
|
end
|
935
944
|
|
945
|
+
class SitesUrlInfo
|
946
|
+
# @private
|
947
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
948
|
+
collection :urls, as: 'urls'
|
949
|
+
end
|
950
|
+
end
|
951
|
+
|
936
952
|
class Status
|
937
953
|
# @private
|
938
954
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.
|
4
|
+
version: 0.14.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-02
|
11
|
+
date: 2022-05-02 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-vault_v1/v0.14.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: []
|