google-apis-vault_v1 0.12.0 → 0.15.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: b07b0c97031d81fe155ddaa3786a54b597ee741d68debebb48dcf325f47b2262
4
- data.tar.gz: 74a756f9e7e30e0c22c4dad705df4aecdde5d656a4e399282e5314897f1550db
3
+ metadata.gz: 93ad03b2daf1d5345bc0503ba779e12907bba09e11a34ab30375be41d932bfa5
4
+ data.tar.gz: 25ce1689410aeb5fbdc86ffbbca06a0ad4ba171b419bfa92d860a1a3d737dd47
5
5
  SHA512:
6
- metadata.gz: ab749f3655e5add7691779ce6fa380cc93ea4a308250ef289fa73db0328639e4a9ceed387735dada5bc9f49eb39fa733b35c64401750f7504f6df0455f6b7f31
7
- data.tar.gz: b6e0ecd48ea79b4051ddc13fb098e8820fcbb27046146f9f3e7c3b82f352885069105ad7b5f3585fbf9cd993963c2281318f702aea16c6644100f56b33a0feb1
6
+ metadata.gz: d88a0845b19a61aad921600c94c0a4dafc493227f08e50a4e8c0208caf027c928cd29a3fa817785b547159e710872c6a77d07116b4c2eeef000e8f810661a6c5
7
+ data.tar.gz: af4d1834e73e2daf0cf46903d92848ab33f62070d52ea3912f980ebaf585a13d6367ca1ef7395df9bdca4164d7a5e1d6f1244054365dcd919a8c8d1f61e94e69
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-vault_v1
2
2
 
3
+ ### v0.15.0 (2022-06-17)
4
+
5
+ * Regenerated using generator version 0.6.0
6
+
7
+ ### v0.14.0 (2022-04-28)
8
+
9
+ * Regenerated from discovery document revision 20220423
10
+
11
+ ### v0.13.0 (2022-04-06)
12
+
13
+ * Regenerated from discovery document revision 20220331
14
+
3
15
  ### v0.12.0 (2022-03-23)
4
16
 
5
17
  * Regenerated from discovery document revision 20220316
@@ -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
 
@@ -1554,6 +1561,11 @@ module Google
1554
1561
  # @return [Google::Apis::VaultV1::SharedDriveInfo]
1555
1562
  attr_accessor :shared_drive_info
1556
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
+
1557
1569
  # The start time for the search query. Specify in GMT. The value is rounded to
1558
1570
  # 12 AM on the specified date.
1559
1571
  # Corresponds to the JSON property `startTime`
@@ -1603,6 +1615,7 @@ module Google
1603
1615
  @org_unit_info = args[:org_unit_info] if args.key?(:org_unit_info)
1604
1616
  @search_method = args[:search_method] if args.key?(:search_method)
1605
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)
1606
1619
  @start_time = args[:start_time] if args.key?(:start_time)
1607
1620
  @team_drive_info = args[:team_drive_info] if args.key?(:team_drive_info)
1608
1621
  @terms = args[:terms] if args.key?(:terms)
@@ -1774,6 +1787,25 @@ module Google
1774
1787
  end
1775
1788
  end
1776
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
+
1777
1809
  # The `Status` type defines a logical error model that is suitable for different
1778
1810
  # programming environments, including REST APIs and RPC APIs. It is used by [
1779
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.12.0"
19
+ GEM_VERSION = "0.15.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.1"
22
+ GENERATOR_VERSION = "0.6.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220316"
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.12.0
4
+ version: 0.15.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-03-28 00:00:00.000000000 Z
11
+ date: 2022-06-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.4'
19
+ version: '0.6'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.4'
29
+ version: '0.6'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.12.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-vault_v1/v0.15.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.5
78
+ rubygems_version: 3.3.14
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Google Vault API V1