google-apis-ondemandscanning_v1beta1 0.41.0 → 0.43.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: 1f1e15b158bd4bd144c5809e87bbc472afc2b25491d511c852914aed3c0f5848
4
- data.tar.gz: 0000bf449b72c29bc41c7d0139bcbed9fd25e9bdb8f1a7916bd9c309c9c04640
3
+ metadata.gz: cf4782dbca41ef0000d7df9b9943fb8cc7a69b442ebde6e7afb6fbd52374acb5
4
+ data.tar.gz: 1f3d27a1978ec26074d52734722b93de3f09d07aa6e4569625418587e2874415
5
5
  SHA512:
6
- metadata.gz: 184b4d811753a48d0b425a1a99d0d0c619006d14db0d8695f4ad680b6cfa89979200700ae5dbd895bcc384384545b17778b753cb0a0cea79e59c85cd89cf49f9
7
- data.tar.gz: 65c05c244227300af1964f381221260ead76b05328354ad88541bd0a58cc972486c8b7f9d36e49b6eb9032dd45f208598a653b86dd3e7169dfffebf893f819bb
6
+ metadata.gz: 0dba732cab3ee866708a0ddbc47a042262a7e03c5e5705279e1f269af8289c3ad68fc8956a6aa81ee2362157a9d3fce81970de64601dd3e562f85f56f67f4940
7
+ data.tar.gz: 29fbefb1c730856da4df894a338b10189daecee67de521c1780e605dc26f231f8540ce8867ab125f0f48deb2993f0231527b308c0abf2cc1819a23026b199f3b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-ondemandscanning_v1beta1
2
2
 
3
+ ### v0.43.0 (2023-11-19)
4
+
5
+ * Regenerated from discovery document revision 20231113
6
+
7
+ ### v0.42.0 (2023-10-22)
8
+
9
+ * Regenerated from discovery document revision 20231016
10
+
3
11
  ### v0.41.0 (2023-10-08)
4
12
 
5
13
  * Regenerated from discovery document revision 20231002
@@ -1822,6 +1822,11 @@ module Google
1822
1822
  class Maintainer
1823
1823
  include Google::Apis::Core::Hashable
1824
1824
 
1825
+ #
1826
+ # Corresponds to the JSON property `email`
1827
+ # @return [String]
1828
+ attr_accessor :email
1829
+
1825
1830
  #
1826
1831
  # Corresponds to the JSON property `kind`
1827
1832
  # @return [String]
@@ -1832,14 +1837,21 @@ module Google
1832
1837
  # @return [String]
1833
1838
  attr_accessor :name
1834
1839
 
1840
+ #
1841
+ # Corresponds to the JSON property `url`
1842
+ # @return [String]
1843
+ attr_accessor :url
1844
+
1835
1845
  def initialize(**args)
1836
1846
  update!(**args)
1837
1847
  end
1838
1848
 
1839
1849
  # Update properties of this object
1840
1850
  def update!(**args)
1851
+ @email = args[:email] if args.key?(:email)
1841
1852
  @kind = args[:kind] if args.key?(:kind)
1842
1853
  @name = args[:name] if args.key?(:name)
1854
+ @url = args[:url] if args.key?(:url)
1843
1855
  end
1844
1856
  end
1845
1857
 
@@ -2205,6 +2217,15 @@ module Google
2205
2217
  # @return [String]
2206
2218
  attr_accessor :hash_digest
2207
2219
 
2220
+ # The list of licenses found that are related to a given package. Note that
2221
+ # licenses may also be stored on the BinarySourceInfo. If there is no
2222
+ # BinarySourceInfo (because there's no concept of source vs binary), then it
2223
+ # will be stored here, while if there are BinarySourceInfos, it will be stored
2224
+ # there, as one source can have multiple binaries with different licenses.
2225
+ # Corresponds to the JSON property `licenses`
2226
+ # @return [Array<String>]
2227
+ attr_accessor :licenses
2228
+
2208
2229
  # The maintainer of the package.
2209
2230
  # Corresponds to the JSON property `maintainer`
2210
2231
  # @return [Google::Apis::OndemandscanningV1beta1::Maintainer]
@@ -2265,6 +2286,7 @@ module Google
2265
2286
  @dependency_chain = args[:dependency_chain] if args.key?(:dependency_chain)
2266
2287
  @file_location = args[:file_location] if args.key?(:file_location)
2267
2288
  @hash_digest = args[:hash_digest] if args.key?(:hash_digest)
2289
+ @licenses = args[:licenses] if args.key?(:licenses)
2268
2290
  @maintainer = args[:maintainer] if args.key?(:maintainer)
2269
2291
  @os = args[:os] if args.key?(:os)
2270
2292
  @os_version = args[:os_version] if args.key?(:os_version)
@@ -2421,6 +2443,14 @@ module Google
2421
2443
  class PackageVersion
2422
2444
  include Google::Apis::Core::Hashable
2423
2445
 
2446
+ # The licenses associated with this package. Note that this has to go on the
2447
+ # PackageVersion level, because we can have cases with images with the same
2448
+ # source having different licences. E.g. in Alpine, musl and musl-utils both
2449
+ # have the same origin musl, but have different sets of licenses.
2450
+ # Corresponds to the JSON property `licenses`
2451
+ # @return [Array<String>]
2452
+ attr_accessor :licenses
2453
+
2424
2454
  #
2425
2455
  # Corresponds to the JSON property `name`
2426
2456
  # @return [String]
@@ -2437,6 +2467,7 @@ module Google
2437
2467
 
2438
2468
  # Update properties of this object
2439
2469
  def update!(**args)
2470
+ @licenses = args[:licenses] if args.key?(:licenses)
2440
2471
  @name = args[:name] if args.key?(:name)
2441
2472
  @version = args[:version] if args.key?(:version)
2442
2473
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module OndemandscanningV1beta1
18
18
  # Version of the google-apis-ondemandscanning_v1beta1 gem
19
- GEM_VERSION = "0.41.0"
19
+ GEM_VERSION = "0.43.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20231002"
25
+ REVISION = "20231113"
26
26
  end
27
27
  end
28
28
  end
@@ -1105,8 +1105,10 @@ module Google
1105
1105
  class Maintainer
1106
1106
  # @private
1107
1107
  class Representation < Google::Apis::Core::JsonRepresentation
1108
+ property :email, as: 'email'
1108
1109
  property :kind, as: 'kind'
1109
1110
  property :name, as: 'name'
1111
+ property :url, as: 'url'
1110
1112
  end
1111
1113
  end
1112
1114
 
@@ -1202,6 +1204,7 @@ module Google
1202
1204
  collection :file_location, as: 'fileLocation', class: Google::Apis::OndemandscanningV1beta1::FileLocation, decorator: Google::Apis::OndemandscanningV1beta1::FileLocation::Representation
1203
1205
 
1204
1206
  property :hash_digest, as: 'hashDigest'
1207
+ collection :licenses, as: 'licenses'
1205
1208
  property :maintainer, as: 'maintainer', class: Google::Apis::OndemandscanningV1beta1::Maintainer, decorator: Google::Apis::OndemandscanningV1beta1::Maintainer::Representation
1206
1209
 
1207
1210
  property :os, as: 'os'
@@ -1254,6 +1257,7 @@ module Google
1254
1257
  class PackageVersion
1255
1258
  # @private
1256
1259
  class Representation < Google::Apis::Core::JsonRepresentation
1260
+ collection :licenses, as: 'licenses'
1257
1261
  property :name, as: 'name'
1258
1262
  property :version, as: 'version'
1259
1263
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-ondemandscanning_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.41.0
4
+ version: 0.43.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: 2023-10-08 00:00:00.000000000 Z
11
+ date: 2023-11-19 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-ondemandscanning_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-ondemandscanning_v1beta1/v0.41.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-ondemandscanning_v1beta1/v0.43.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-ondemandscanning_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []