google-apis-vault_v1 0.13.0 → 0.14.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: 3fa024ff8ca5b9b0f7dffdd4ef2861ebcc90fc64fd1f63930f0444491268a9ab
4
- data.tar.gz: c96e3928e171460bf727381d76565a5a51ed0626e932d47496e098b6300aa1db
3
+ metadata.gz: 9f0cd71e84d86c058bd7ebf10eb71bc648b102d009383e3494c1965eb7906d07
4
+ data.tar.gz: 1cae6720ab532ecfe959a93f61be7048fa1ddbfc47f8f3abe94c05916e995e6c
5
5
  SHA512:
6
- metadata.gz: 48068bbd3a50f5930485871b1e01b96f754f2c61e467cca54eae0b7392480c72135f540929d189fc78fe6a76a82eadf5374254ad83c3070d590f0931ac685b38
7
- data.tar.gz: f8a931a6194157a33b9c14be40edd99fe6396c63e8669b52dbe76f8000fd74240d108b08e20dca2d465eff0b4ea4d1bb5b0172be61bf1331b0528362afc01d32
6
+ metadata.gz: 1319c24420a0db59ede28b9b360964bb0d73695e4a50b26bf97fe1fd6dee88edc81b69ca33be6138d6bd6341877bd8350d2959da137278b8bfa8e4dcc8753521
7
+ data.tar.gz: da61a233f2aa9ce40ad12b6499e1d26c2a55a461ff960520483b1d671ee20fc5c4765fc61a7bf1860452fcee3521e53740ee8f0f6bb688ea2f308bbc7f7c2f36
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.13.0 (2022-04-06)
4
8
 
5
9
  * Regenerated from discovery document revision 20220331
@@ -1561,6 +1561,11 @@ module Google
1561
1561
  # @return [Google::Apis::VaultV1::SharedDriveInfo]
1562
1562
  attr_accessor :shared_drive_info
1563
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
+
1564
1569
  # The start time for the search query. Specify in GMT. The value is rounded to
1565
1570
  # 12 AM on the specified date.
1566
1571
  # Corresponds to the JSON property `startTime`
@@ -1610,6 +1615,7 @@ module Google
1610
1615
  @org_unit_info = args[:org_unit_info] if args.key?(:org_unit_info)
1611
1616
  @search_method = args[:search_method] if args.key?(:search_method)
1612
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)
1613
1619
  @start_time = args[:start_time] if args.key?(:start_time)
1614
1620
  @team_drive_info = args[:team_drive_info] if args.key?(:team_drive_info)
1615
1621
  @terms = args[:terms] if args.key?(:terms)
@@ -1781,6 +1787,25 @@ module Google
1781
1787
  end
1782
1788
  end
1783
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
+
1784
1809
  # The `Status` type defines a logical error model that is suitable for different
1785
1810
  # programming environments, including REST APIs and RPC APIs. It is used by [
1786
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.13.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 = "20220331"
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
 
@@ -869,6 +875,8 @@ module Google
869
875
  property :search_method, as: 'searchMethod'
870
876
  property :shared_drive_info, as: 'sharedDriveInfo', class: Google::Apis::VaultV1::SharedDriveInfo, decorator: Google::Apis::VaultV1::SharedDriveInfo::Representation
871
877
 
878
+ property :sites_url_info, as: 'sitesUrlInfo', class: Google::Apis::VaultV1::SitesUrlInfo, decorator: Google::Apis::VaultV1::SitesUrlInfo::Representation
879
+
872
880
  property :start_time, as: 'startTime'
873
881
  property :team_drive_info, as: 'teamDriveInfo', class: Google::Apis::VaultV1::TeamDriveInfo, decorator: Google::Apis::VaultV1::TeamDriveInfo::Representation
874
882
 
@@ -934,6 +942,13 @@ module Google
934
942
  end
935
943
  end
936
944
 
945
+ class SitesUrlInfo
946
+ # @private
947
+ class Representation < Google::Apis::Core::JsonRepresentation
948
+ collection :urls, as: 'urls'
949
+ end
950
+ end
951
+
937
952
  class Status
938
953
  # @private
939
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.13.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-04-11 00:00:00.000000000 Z
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.13.0
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: []