google-apis-containeranalysis_v1alpha1 0.22.0 → 0.25.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8d000b50bcf1976fd5d5c25a9ee77b78c99c006a1beafb08b54d6ff89c087fbb
4
- data.tar.gz: 98f10219c4d4092d5d15d1ebac2435811b6884401adeddae446c001c0ed876ce
3
+ metadata.gz: bd4b847be9fc90ef1247303a1fa7b4f780e70ee4677ce3f0f16856597b9e9c87
4
+ data.tar.gz: c3d262408823de048d4114ddb3803b96f7d106bf0111ddfc6b4687ba102e455c
5
5
  SHA512:
6
- metadata.gz: 269347b7b8fce94f82d9570c56f9ed1d6b6556138dd8155ccfa44d4a16b0a9fad2db475c856915fcaff4bb2e04e4a2d1688821a81fb0de536e8dd7c28b058aa8
7
- data.tar.gz: 421d5ff53764ac0986c945666507b335ca693d0e1057347b2999a845992e28f82768f0c5c6225c6cc03c8c2faf101e236a11f6af8340a0c131b6d5ef19d40e9e
6
+ metadata.gz: 8f911782bec757bbcbf39f10deadaad1abd4e053f85624451e244fef28cbe8eeb56dee34f73b192f1f44ab48c69c45ec423a97a87c8f69570840c8d9b5e4389c
7
+ data.tar.gz: 360086d7a4d3d67293c8bf332ef194c7b645a02b9aac53b2ac6ab73999491403d783554cb57bc00db88c3b56d6d18fb809e7299ad415009874d7f5623c6cd771
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-containeranalysis_v1alpha1
2
2
 
3
+ ### v0.25.0 (2022-05-11)
4
+
5
+ * Regenerated from discovery document revision 20220506
6
+
7
+ ### v0.24.0 (2022-04-21)
8
+
9
+ * Regenerated from discovery document revision 20220414
10
+
11
+ ### v0.23.0 (2022-03-23)
12
+
13
+ * Regenerated from discovery document revision 20220318
14
+
3
15
  ### v0.22.0 (2022-02-10)
4
16
 
5
17
  * Regenerated from discovery document revision 20220204
@@ -207,7 +207,7 @@ module Google
207
207
  # @return [Google::Apis::ContaineranalysisV1alpha1::Expr]
208
208
  attr_accessor :condition
209
209
 
210
- # Specifies the principals requesting access for a Cloud Platform resource. `
210
+ # Specifies the principals requesting access for a Google Cloud resource. `
211
211
  # members` can have the following values: * `allUsers`: A special identifier
212
212
  # that represents anyone who is on the internet; with or without a Google
213
213
  # account. * `allAuthenticatedUsers`: A special identifier that represents
@@ -2349,6 +2349,32 @@ module Google
2349
2349
  end
2350
2350
  end
2351
2351
 
2352
+ # Digest information.
2353
+ class Digest
2354
+ include Google::Apis::Core::Hashable
2355
+
2356
+ # `SHA1`, `SHA512` etc.
2357
+ # Corresponds to the JSON property `algo`
2358
+ # @return [String]
2359
+ attr_accessor :algo
2360
+
2361
+ # Value of the digest encoded. For example: SHA512 - base64 encoding, SHA1 - hex
2362
+ # encoding.
2363
+ # Corresponds to the JSON property `digestValue`
2364
+ # @return [String]
2365
+ attr_accessor :digest_value
2366
+
2367
+ def initialize(**args)
2368
+ update!(**args)
2369
+ end
2370
+
2371
+ # Update properties of this object
2372
+ def update!(**args)
2373
+ @algo = args[:algo] if args.key?(:algo)
2374
+ @digest_value = args[:digest_value] if args.key?(:digest_value)
2375
+ end
2376
+ end
2377
+
2352
2378
  # Provides information about the scan status of a discovered resource.
2353
2379
  class Discovered
2354
2380
  include Google::Apis::Core::Hashable
@@ -2597,8 +2623,7 @@ module Google
2597
2623
  # A generic empty message that you can re-use to avoid defining duplicated empty
2598
2624
  # messages in your APIs. A typical example is to use it as the request or the
2599
2625
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
2600
- # protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
2601
- # `Empty` is empty JSON object ````.
2626
+ # protobuf.Empty) returns (google.protobuf.Empty); `
2602
2627
  class Empty
2603
2628
  include Google::Apis::Core::Hashable
2604
2629
 
@@ -2786,6 +2811,26 @@ module Google
2786
2811
  end
2787
2812
  end
2788
2813
 
2814
+ # Indicates the location at which a package was found.
2815
+ class FileLocation
2816
+ include Google::Apis::Core::Hashable
2817
+
2818
+ # For jars that are contained inside .war files, this filepath can indicate the
2819
+ # path to war file combined with the path to jar file.
2820
+ # Corresponds to the JSON property `filePath`
2821
+ # @return [String]
2822
+ attr_accessor :file_path
2823
+
2824
+ def initialize(**args)
2825
+ update!(**args)
2826
+ end
2827
+
2828
+ # Update properties of this object
2829
+ def update!(**args)
2830
+ @file_path = args[:file_path] if args.key?(:file_path)
2831
+ end
2832
+ end
2833
+
2789
2834
  # FileNote represents an SPDX File Information section: https://spdx.github.io/
2790
2835
  # spdx-spec/4-file-information/
2791
2836
  class FileNote
@@ -2859,8 +2904,7 @@ module Google
2859
2904
  # @return [String]
2860
2905
  attr_accessor :id
2861
2906
 
2862
- # License information: https://spdx.github.io/spdx-spec/3-package-information/#
2863
- # 315-declared-license
2907
+ # License information.
2864
2908
  # Corresponds to the JSON property `licenseConcluded`
2865
2909
  # @return [Google::Apis::ContaineranalysisV1alpha1::License]
2866
2910
  attr_accessor :license_concluded
@@ -3344,6 +3388,24 @@ module Google
3344
3388
  class Installation
3345
3389
  include Google::Apis::Core::Hashable
3346
3390
 
3391
+ # Output only. The CPU architecture for which packages in this distribution
3392
+ # channel were built. Architecture will be blank for language packages.
3393
+ # Corresponds to the JSON property `architecture`
3394
+ # @return [String]
3395
+ attr_accessor :architecture
3396
+
3397
+ # Output only. The cpe_uri in [CPE format](https://cpe.mitre.org/specification/)
3398
+ # denoting the package manager version distributing a package. The cpe_uri will
3399
+ # be blank for language packages.
3400
+ # Corresponds to the JSON property `cpeUri`
3401
+ # @return [String]
3402
+ attr_accessor :cpe_uri
3403
+
3404
+ # License information.
3405
+ # Corresponds to the JSON property `license`
3406
+ # @return [Google::Apis::ContaineranalysisV1alpha1::License]
3407
+ attr_accessor :license
3408
+
3347
3409
  # All of the places within the filesystem versions of this package have been
3348
3410
  # found.
3349
3411
  # Corresponds to the JSON property `location`
@@ -3355,14 +3417,33 @@ module Google
3355
3417
  # @return [String]
3356
3418
  attr_accessor :name
3357
3419
 
3420
+ # Output only. The type of package; whether native or non native (e.g., ruby
3421
+ # gems, node.js packages, etc.).
3422
+ # Corresponds to the JSON property `packageType`
3423
+ # @return [String]
3424
+ attr_accessor :package_type
3425
+
3426
+ # Version contains structured information about the version of the package. For
3427
+ # a discussion of this in Debian/Ubuntu: http://serverfault.com/questions/604541/
3428
+ # debian-packages-version-convention For a discussion of this in Redhat/Fedora/
3429
+ # Centos: http://blog.jasonantman.com/2014/07/how-yum-and-rpm-compare-versions/
3430
+ # Corresponds to the JSON property `version`
3431
+ # @return [Google::Apis::ContaineranalysisV1alpha1::Version]
3432
+ attr_accessor :version
3433
+
3358
3434
  def initialize(**args)
3359
3435
  update!(**args)
3360
3436
  end
3361
3437
 
3362
3438
  # Update properties of this object
3363
3439
  def update!(**args)
3440
+ @architecture = args[:architecture] if args.key?(:architecture)
3441
+ @cpe_uri = args[:cpe_uri] if args.key?(:cpe_uri)
3442
+ @license = args[:license] if args.key?(:license)
3364
3443
  @location = args[:location] if args.key?(:location)
3365
3444
  @name = args[:name] if args.key?(:name)
3445
+ @package_type = args[:package_type] if args.key?(:package_type)
3446
+ @version = args[:version] if args.key?(:version)
3366
3447
  end
3367
3448
  end
3368
3449
 
@@ -3391,8 +3472,7 @@ module Google
3391
3472
  end
3392
3473
  end
3393
3474
 
3394
- # License information: https://spdx.github.io/spdx-spec/3-package-information/#
3395
- # 315-declared-license
3475
+ # License information.
3396
3476
  class License
3397
3477
  include Google::Apis::Core::Hashable
3398
3478
 
@@ -3401,8 +3481,10 @@ module Google
3401
3481
  # @return [String]
3402
3482
  attr_accessor :comments
3403
3483
 
3404
- # Expression: https://spdx.github.io/spdx-spec/appendix-IV-SPDX-license-
3405
- # expressions/
3484
+ # Often a single license can be used to represent the licensing terms. Sometimes
3485
+ # it is necessary to include a choice of one or more licenses or some
3486
+ # combination of license identifiers. Examples: "LGPL-2.1-only OR MIT", "LGPL-2.
3487
+ # 1-only AND MIT", "GPL-2.0-or-later WITH Bison-exception-2.2".
3406
3488
  # Corresponds to the JSON property `expression`
3407
3489
  # @return [String]
3408
3490
  attr_accessor :expression
@@ -3525,8 +3607,8 @@ module Google
3525
3607
  class Location
3526
3608
  include Google::Apis::Core::Hashable
3527
3609
 
3528
- # The cpe_uri in [cpe format](https://cpe.mitre.org/specification/) denoting the
3529
- # package manager version distributing a package.
3610
+ # Deprecated. The cpe_uri in [cpe format](https://cpe.mitre.org/specification/)
3611
+ # denoting the package manager version distributing a package.
3530
3612
  # Corresponds to the JSON property `cpeUri`
3531
3613
  # @return [String]
3532
3614
  attr_accessor :cpe_uri
@@ -4074,24 +4156,86 @@ module Google
4074
4156
  class Package
4075
4157
  include Google::Apis::Core::Hashable
4076
4158
 
4159
+ # The CPU architecture for which packages in this distribution channel were
4160
+ # built. Architecture will be blank for language packages.
4161
+ # Corresponds to the JSON property `architecture`
4162
+ # @return [String]
4163
+ attr_accessor :architecture
4164
+
4165
+ # The cpe_uri in [CPE format](https://cpe.mitre.org/specification/) denoting the
4166
+ # package manager version distributing a package. The cpe_uri will be blank for
4167
+ # language packages.
4168
+ # Corresponds to the JSON property `cpeUri`
4169
+ # @return [String]
4170
+ attr_accessor :cpe_uri
4171
+
4172
+ # The description of this package.
4173
+ # Corresponds to the JSON property `description`
4174
+ # @return [String]
4175
+ attr_accessor :description
4176
+
4177
+ # Hash value, typically a file digest, that allows unique identification a
4178
+ # specific package.
4179
+ # Corresponds to the JSON property `digest`
4180
+ # @return [Array<Google::Apis::ContaineranalysisV1alpha1::Digest>]
4181
+ attr_accessor :digest
4182
+
4077
4183
  # The various channels by which a package is distributed.
4078
4184
  # Corresponds to the JSON property `distribution`
4079
4185
  # @return [Array<Google::Apis::ContaineranalysisV1alpha1::Distribution>]
4080
4186
  attr_accessor :distribution
4081
4187
 
4188
+ # License information.
4189
+ # Corresponds to the JSON property `license`
4190
+ # @return [Google::Apis::ContaineranalysisV1alpha1::License]
4191
+ attr_accessor :license
4192
+
4193
+ # A freeform text denoting the maintainer of this package.
4194
+ # Corresponds to the JSON property `maintainer`
4195
+ # @return [String]
4196
+ attr_accessor :maintainer
4197
+
4082
4198
  # The name of the package.
4083
4199
  # Corresponds to the JSON property `name`
4084
4200
  # @return [String]
4085
4201
  attr_accessor :name
4086
4202
 
4203
+ # The type of package; whether native or non native (e.g., ruby gems, node.js
4204
+ # packages, etc.).
4205
+ # Corresponds to the JSON property `packageType`
4206
+ # @return [String]
4207
+ attr_accessor :package_type
4208
+
4209
+ # The homepage for this package.
4210
+ # Corresponds to the JSON property `url`
4211
+ # @return [String]
4212
+ attr_accessor :url
4213
+
4214
+ # Version contains structured information about the version of the package. For
4215
+ # a discussion of this in Debian/Ubuntu: http://serverfault.com/questions/604541/
4216
+ # debian-packages-version-convention For a discussion of this in Redhat/Fedora/
4217
+ # Centos: http://blog.jasonantman.com/2014/07/how-yum-and-rpm-compare-versions/
4218
+ # Corresponds to the JSON property `version`
4219
+ # @return [Google::Apis::ContaineranalysisV1alpha1::Version]
4220
+ attr_accessor :version
4221
+
4087
4222
  def initialize(**args)
4088
4223
  update!(**args)
4089
4224
  end
4090
4225
 
4091
4226
  # Update properties of this object
4092
4227
  def update!(**args)
4228
+ @architecture = args[:architecture] if args.key?(:architecture)
4229
+ @cpe_uri = args[:cpe_uri] if args.key?(:cpe_uri)
4230
+ @description = args[:description] if args.key?(:description)
4231
+ @digest = args[:digest] if args.key?(:digest)
4093
4232
  @distribution = args[:distribution] if args.key?(:distribution)
4233
+ @license = args[:license] if args.key?(:license)
4234
+ @maintainer = args[:maintainer] if args.key?(:maintainer)
4094
4235
  @name = args[:name] if args.key?(:name)
4236
+ @package_type = args[:package_type] if args.key?(:package_type)
4237
+ @url = args[:url] if args.key?(:url)
4238
+ @version = args[:version] if args.key?(:version)
4095
4239
  end
4096
4240
  end
4097
4241
 
@@ -4156,8 +4300,7 @@ module Google
4156
4300
  # @return [String]
4157
4301
  attr_accessor :home_page
4158
4302
 
4159
- # License information: https://spdx.github.io/spdx-spec/3-package-information/#
4160
- # 315-declared-license
4303
+ # License information.
4161
4304
  # Corresponds to the JSON property `licenseDeclared`
4162
4305
  # @return [Google::Apis::ContaineranalysisV1alpha1::License]
4163
4306
  attr_accessor :license_declared
@@ -4258,8 +4401,7 @@ module Google
4258
4401
  # @return [String]
4259
4402
  attr_accessor :id
4260
4403
 
4261
- # License information: https://spdx.github.io/spdx-spec/3-package-information/#
4262
- # 315-declared-license
4404
+ # License information.
4263
4405
  # Corresponds to the JSON property `licenseConcluded`
4264
4406
  # @return [Google::Apis::ContaineranalysisV1alpha1::License]
4265
4407
  attr_accessor :license_concluded
@@ -5204,7 +5346,7 @@ module Google
5204
5346
  include Google::Apis::Core::Hashable
5205
5347
 
5206
5348
  # The set of permissions to check for the `resource`. Permissions with wildcards
5207
- # (such as '*' or 'storage.*') are not allowed. For more information see [IAM
5349
+ # (such as `*` or `storage.*`) are not allowed. For more information see [IAM
5208
5350
  # Overview](https://cloud.google.com/iam/docs/overview#permissions).
5209
5351
  # Corresponds to the JSON property `permissions`
5210
5352
  # @return [Array<String>]
@@ -5504,6 +5646,11 @@ module Google
5504
5646
  # @return [String]
5505
5647
  attr_accessor :cpe_uri
5506
5648
 
5649
+ # The file location at which this package was found.
5650
+ # Corresponds to the JSON property `fileLocation`
5651
+ # @return [Array<Google::Apis::ContaineranalysisV1alpha1::FileLocation>]
5652
+ attr_accessor :file_location
5653
+
5507
5654
  # The package being described.
5508
5655
  # Corresponds to the JSON property `package`
5509
5656
  # @return [String]
@@ -5524,6 +5671,7 @@ module Google
5524
5671
  # Update properties of this object
5525
5672
  def update!(**args)
5526
5673
  @cpe_uri = args[:cpe_uri] if args.key?(:cpe_uri)
5674
+ @file_location = args[:file_location] if args.key?(:file_location)
5527
5675
  @package = args[:package] if args.key?(:package)
5528
5676
  @version = args[:version] if args.key?(:version)
5529
5677
  end
@@ -5538,6 +5686,17 @@ module Google
5538
5686
  # @return [Float]
5539
5687
  attr_accessor :cvss_score
5540
5688
 
5689
+ # Common Vulnerability Scoring System.
5690
+ # Corresponds to the JSON property `cvssV2`
5691
+ # @return [Google::Apis::ContaineranalysisV1alpha1::Cvss]
5692
+ attr_accessor :cvss_v2
5693
+
5694
+ # A list of CWE for this vulnerability. For details, see: https://cwe.mitre.org/
5695
+ # index.html
5696
+ # Corresponds to the JSON property `cwe`
5697
+ # @return [Array<String>]
5698
+ attr_accessor :cwe
5699
+
5541
5700
  # All information about the package to specifically identify this vulnerability.
5542
5701
  # One entry per (version range and cpe_uri) the package vulnerability has
5543
5702
  # manifested in.
@@ -5557,6 +5716,8 @@ module Google
5557
5716
  # Update properties of this object
5558
5717
  def update!(**args)
5559
5718
  @cvss_score = args[:cvss_score] if args.key?(:cvss_score)
5719
+ @cvss_v2 = args[:cvss_v2] if args.key?(:cvss_v2)
5720
+ @cwe = args[:cwe] if args.key?(:cwe)
5560
5721
  @details = args[:details] if args.key?(:details)
5561
5722
  @severity = args[:severity] if args.key?(:severity)
5562
5723
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ContaineranalysisV1alpha1
18
18
  # Version of the google-apis-containeranalysis_v1alpha1 gem
19
- GEM_VERSION = "0.22.0"
19
+ GEM_VERSION = "0.25.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 = "20220204"
25
+ REVISION = "20220506"
26
26
  end
27
27
  end
28
28
  end
@@ -334,6 +334,12 @@ module Google
334
334
  include Google::Apis::Core::JsonObjectSupport
335
335
  end
336
336
 
337
+ class Digest
338
+ class Representation < Google::Apis::Core::JsonRepresentation; end
339
+
340
+ include Google::Apis::Core::JsonObjectSupport
341
+ end
342
+
337
343
  class Discovered
338
344
  class Representation < Google::Apis::Core::JsonRepresentation; end
339
345
 
@@ -400,6 +406,12 @@ module Google
400
406
  include Google::Apis::Core::JsonObjectSupport
401
407
  end
402
408
 
409
+ class FileLocation
410
+ class Representation < Google::Apis::Core::JsonRepresentation; end
411
+
412
+ include Google::Apis::Core::JsonObjectSupport
413
+ end
414
+
403
415
  class FileNote
404
416
  class Representation < Google::Apis::Core::JsonRepresentation; end
405
417
 
@@ -1378,6 +1390,14 @@ module Google
1378
1390
  end
1379
1391
  end
1380
1392
 
1393
+ class Digest
1394
+ # @private
1395
+ class Representation < Google::Apis::Core::JsonRepresentation
1396
+ property :algo, as: 'algo'
1397
+ property :digest_value, as: 'digestValue'
1398
+ end
1399
+ end
1400
+
1381
1401
  class Discovered
1382
1402
  # @private
1383
1403
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1488,6 +1508,13 @@ module Google
1488
1508
  end
1489
1509
  end
1490
1510
 
1511
+ class FileLocation
1512
+ # @private
1513
+ class Representation < Google::Apis::Core::JsonRepresentation
1514
+ property :file_path, as: 'filePath'
1515
+ end
1516
+ end
1517
+
1491
1518
  class FileNote
1492
1519
  # @private
1493
1520
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1658,9 +1685,16 @@ module Google
1658
1685
  class Installation
1659
1686
  # @private
1660
1687
  class Representation < Google::Apis::Core::JsonRepresentation
1688
+ property :architecture, as: 'architecture'
1689
+ property :cpe_uri, as: 'cpeUri'
1690
+ property :license, as: 'license', class: Google::Apis::ContaineranalysisV1alpha1::License, decorator: Google::Apis::ContaineranalysisV1alpha1::License::Representation
1691
+
1661
1692
  collection :location, as: 'location', class: Google::Apis::ContaineranalysisV1alpha1::Location, decorator: Google::Apis::ContaineranalysisV1alpha1::Location::Representation
1662
1693
 
1663
1694
  property :name, as: 'name'
1695
+ property :package_type, as: 'packageType'
1696
+ property :version, as: 'version', class: Google::Apis::ContaineranalysisV1alpha1::Version, decorator: Google::Apis::ContaineranalysisV1alpha1::Version::Representation
1697
+
1664
1698
  end
1665
1699
  end
1666
1700
 
@@ -1858,9 +1892,21 @@ module Google
1858
1892
  class Package
1859
1893
  # @private
1860
1894
  class Representation < Google::Apis::Core::JsonRepresentation
1895
+ property :architecture, as: 'architecture'
1896
+ property :cpe_uri, as: 'cpeUri'
1897
+ property :description, as: 'description'
1898
+ collection :digest, as: 'digest', class: Google::Apis::ContaineranalysisV1alpha1::Digest, decorator: Google::Apis::ContaineranalysisV1alpha1::Digest::Representation
1899
+
1861
1900
  collection :distribution, as: 'distribution', class: Google::Apis::ContaineranalysisV1alpha1::Distribution, decorator: Google::Apis::ContaineranalysisV1alpha1::Distribution::Representation
1862
1901
 
1902
+ property :license, as: 'license', class: Google::Apis::ContaineranalysisV1alpha1::License, decorator: Google::Apis::ContaineranalysisV1alpha1::License::Representation
1903
+
1904
+ property :maintainer, as: 'maintainer'
1863
1905
  property :name, as: 'name'
1906
+ property :package_type, as: 'packageType'
1907
+ property :url, as: 'url'
1908
+ property :version, as: 'version', class: Google::Apis::ContaineranalysisV1alpha1::Version, decorator: Google::Apis::ContaineranalysisV1alpha1::Version::Representation
1909
+
1864
1910
  end
1865
1911
  end
1866
1912
 
@@ -2203,6 +2249,8 @@ module Google
2203
2249
  # @private
2204
2250
  class Representation < Google::Apis::Core::JsonRepresentation
2205
2251
  property :cpe_uri, as: 'cpeUri'
2252
+ collection :file_location, as: 'fileLocation', class: Google::Apis::ContaineranalysisV1alpha1::FileLocation, decorator: Google::Apis::ContaineranalysisV1alpha1::FileLocation::Representation
2253
+
2206
2254
  property :package, as: 'package'
2207
2255
  property :version, as: 'version', class: Google::Apis::ContaineranalysisV1alpha1::Version, decorator: Google::Apis::ContaineranalysisV1alpha1::Version::Representation
2208
2256
 
@@ -2213,6 +2261,9 @@ module Google
2213
2261
  # @private
2214
2262
  class Representation < Google::Apis::Core::JsonRepresentation
2215
2263
  property :cvss_score, as: 'cvssScore'
2264
+ property :cvss_v2, as: 'cvssV2', class: Google::Apis::ContaineranalysisV1alpha1::Cvss, decorator: Google::Apis::ContaineranalysisV1alpha1::Cvss::Representation
2265
+
2266
+ collection :cwe, as: 'cwe'
2216
2267
  collection :details, as: 'details', class: Google::Apis::ContaineranalysisV1alpha1::Detail, decorator: Google::Apis::ContaineranalysisV1alpha1::Detail::Representation
2217
2268
 
2218
2269
  property :severity, as: 'severity'
@@ -161,8 +161,9 @@ module Google
161
161
  # occurrences/`OCCURRENCE_ID`` for occurrences and projects/`PROJECT_ID`/notes/`
162
162
  # NOTE_ID` for notes
163
163
  # @param [String] resource
164
- # REQUIRED: The resource for which the policy is being requested. See the
165
- # operation documentation for the appropriate value for this field.
164
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
165
+ # names](https://cloud.google.com/apis/design/resource_names) for the
166
+ # appropriate value for this field.
166
167
  # @param [Google::Apis::ContaineranalysisV1alpha1::GetIamPolicyRequest] get_iam_policy_request_object
167
168
  # @param [String] fields
168
169
  # Selector specifying which fields to include in a partial response.
@@ -285,8 +286,9 @@ module Google
285
286
  # projects/`projectid`/occurrences/`occurrenceid`` for occurrences and projects/`
286
287
  # projectid`/notes/`noteid` for notes
287
288
  # @param [String] resource
288
- # REQUIRED: The resource for which the policy is being specified. See the
289
- # operation documentation for the appropriate value for this field.
289
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
290
+ # names](https://cloud.google.com/apis/design/resource_names) for the
291
+ # appropriate value for this field.
290
292
  # @param [Google::Apis::ContaineranalysisV1alpha1::SetIamPolicyRequest] set_iam_policy_request_object
291
293
  # @param [String] fields
292
294
  # Selector specifying which fields to include in a partial response.
@@ -326,8 +328,9 @@ module Google
326
328
  # projects/`PROJECT_ID`/occurrences/`OCCURRENCE_ID`` for `Occurrences` and `
327
329
  # projects/`PROJECT_ID`/notes/`NOTE_ID`` for `Notes`
328
330
  # @param [String] resource
329
- # REQUIRED: The resource for which the policy detail is being requested. See the
330
- # operation documentation for the appropriate value for this field.
331
+ # REQUIRED: The resource for which the policy detail is being requested. See [
332
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
333
+ # appropriate value for this field.
331
334
  # @param [Google::Apis::ContaineranalysisV1alpha1::TestIamPermissionsRequest] test_iam_permissions_request_object
332
335
  # @param [String] fields
333
336
  # Selector specifying which fields to include in a partial response.
@@ -511,8 +514,9 @@ module Google
511
514
  # occurrences/`OCCURRENCE_ID`` for occurrences and projects/`PROJECT_ID`/notes/`
512
515
  # NOTE_ID` for notes
513
516
  # @param [String] resource
514
- # REQUIRED: The resource for which the policy is being requested. See the
515
- # operation documentation for the appropriate value for this field.
517
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
518
+ # names](https://cloud.google.com/apis/design/resource_names) for the
519
+ # appropriate value for this field.
516
520
  # @param [Google::Apis::ContaineranalysisV1alpha1::GetIamPolicyRequest] get_iam_policy_request_object
517
521
  # @param [String] fields
518
522
  # Selector specifying which fields to include in a partial response.
@@ -702,8 +706,9 @@ module Google
702
706
  # projects/`projectid`/occurrences/`occurrenceid`` for occurrences and projects/`
703
707
  # projectid`/notes/`noteid` for notes
704
708
  # @param [String] resource
705
- # REQUIRED: The resource for which the policy is being specified. See the
706
- # operation documentation for the appropriate value for this field.
709
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
710
+ # names](https://cloud.google.com/apis/design/resource_names) for the
711
+ # appropriate value for this field.
707
712
  # @param [Google::Apis::ContaineranalysisV1alpha1::SetIamPolicyRequest] set_iam_policy_request_object
708
713
  # @param [String] fields
709
714
  # Selector specifying which fields to include in a partial response.
@@ -743,8 +748,9 @@ module Google
743
748
  # projects/`PROJECT_ID`/occurrences/`OCCURRENCE_ID`` for `Occurrences` and `
744
749
  # projects/`PROJECT_ID`/notes/`NOTE_ID`` for `Notes`
745
750
  # @param [String] resource
746
- # REQUIRED: The resource for which the policy detail is being requested. See the
747
- # operation documentation for the appropriate value for this field.
751
+ # REQUIRED: The resource for which the policy detail is being requested. See [
752
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
753
+ # appropriate value for this field.
748
754
  # @param [Google::Apis::ContaineranalysisV1alpha1::TestIamPermissionsRequest] test_iam_permissions_request_object
749
755
  # @param [String] fields
750
756
  # Selector specifying which fields to include in a partial response.
@@ -1061,8 +1067,9 @@ module Google
1061
1067
  # occurrences/`OCCURRENCE_ID`` for occurrences and projects/`PROJECT_ID`/notes/`
1062
1068
  # NOTE_ID` for notes
1063
1069
  # @param [String] resource
1064
- # REQUIRED: The resource for which the policy is being requested. See the
1065
- # operation documentation for the appropriate value for this field.
1070
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
1071
+ # names](https://cloud.google.com/apis/design/resource_names) for the
1072
+ # appropriate value for this field.
1066
1073
  # @param [Google::Apis::ContaineranalysisV1alpha1::GetIamPolicyRequest] get_iam_policy_request_object
1067
1074
  # @param [String] fields
1068
1075
  # Selector specifying which fields to include in a partial response.
@@ -1185,8 +1192,9 @@ module Google
1185
1192
  # projects/`projectid`/occurrences/`occurrenceid`` for occurrences and projects/`
1186
1193
  # projectid`/notes/`noteid` for notes
1187
1194
  # @param [String] resource
1188
- # REQUIRED: The resource for which the policy is being specified. See the
1189
- # operation documentation for the appropriate value for this field.
1195
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
1196
+ # names](https://cloud.google.com/apis/design/resource_names) for the
1197
+ # appropriate value for this field.
1190
1198
  # @param [Google::Apis::ContaineranalysisV1alpha1::SetIamPolicyRequest] set_iam_policy_request_object
1191
1199
  # @param [String] fields
1192
1200
  # Selector specifying which fields to include in a partial response.
@@ -1226,8 +1234,9 @@ module Google
1226
1234
  # projects/`PROJECT_ID`/occurrences/`OCCURRENCE_ID`` for `Occurrences` and `
1227
1235
  # projects/`PROJECT_ID`/notes/`NOTE_ID`` for `Notes`
1228
1236
  # @param [String] resource
1229
- # REQUIRED: The resource for which the policy detail is being requested. See the
1230
- # operation documentation for the appropriate value for this field.
1237
+ # REQUIRED: The resource for which the policy detail is being requested. See [
1238
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
1239
+ # appropriate value for this field.
1231
1240
  # @param [Google::Apis::ContaineranalysisV1alpha1::TestIamPermissionsRequest] test_iam_permissions_request_object
1232
1241
  # @param [String] fields
1233
1242
  # Selector specifying which fields to include in a partial response.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-containeranalysis_v1alpha1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.22.0
4
+ version: 0.25.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-14 00:00:00.000000000 Z
11
+ date: 2022-05-16 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-containeranalysis_v1alpha1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1alpha1/v0.22.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1alpha1/v0.25.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1alpha1
63
63
  post_install_message:
64
64
  rdoc_options: []