google-apis-containeranalysis_v1alpha1 0.1.0 → 0.6.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: 7e15853ad84fadd7ec97da1bd6fd67c1f3d5fbca61a7164a45309736bb9134e5
4
- data.tar.gz: 288a3b118ac554ef3c8c40bd514558500c045d3440084d08a1e18b4a9e82058a
3
+ metadata.gz: c54fafe6cf9bad8db9e5c4a515b632ef6722cca244fc631dd89a4b9b74a25705
4
+ data.tar.gz: 2e9eabe72d8326cc5a2b66ce96ae23710efb85e7810519e33d7ec63adc29e69f
5
5
  SHA512:
6
- metadata.gz: 0a0ae3c57bc5e9dc07e75bbb82801f3a29bbb038fb7b7137a4c718be65f71861f1981368d252046c963e6c70aab599ed8e704d1e610afdaa7bccfa2cb9386e37
7
- data.tar.gz: 5399c642360e4046f1aa1e1426cd83de3acdda7616968ba997f0f4209e6562beb57393162d48c412372fc3060ffc95fae0f1d1c502fc9f49ef948a773f292b76
6
+ metadata.gz: 42476d46852363d310cfa963ea889665d1ed348e908fa2b7ce8f447c7ba18e6d22254a0f4901566b0f6c5b03821767aa2b091115240a44dfc98498d088b8aae7
7
+ data.tar.gz: 38a44342825cf3168f2bd020ba79e3b9d427e1423401f4398c4146c6ba9febab79c07cef0be1ced0215fdda21754b0c302d3fc583e96a54fdfd35466f94ff31f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Release history for google-apis-containeranalysis_v1alpha1
2
2
 
3
+ ### v0.6.0 (2021-05-19)
4
+
5
+ * Unspecified changes
6
+
7
+ ### v0.5.0 (2021-04-16)
8
+
9
+ * Regenerated from discovery document revision 20210409
10
+
11
+ ### v0.4.0 (2021-04-01)
12
+
13
+ * Regenerated from discovery document revision 20210326
14
+ * Regenerated using generator version 0.2.0
15
+
16
+ ### v0.3.0 (2021-03-04)
17
+
18
+ * Unspecified changes
19
+
20
+ ### v0.2.0 (2021-01-28)
21
+
22
+ * Regenerated from discovery document revision 20210122
23
+ * Regenerated using generator version 0.1.2
24
+
3
25
  ### v0.1.0 (2021-01-07)
4
26
 
5
27
  * Regenerated using generator version 0.1.1
@@ -30,7 +30,7 @@ module Google
30
30
  # This is NOT the gem version.
31
31
  VERSION = 'V1alpha1'
32
32
 
33
- # View and manage your data across Google Cloud Platform services
33
+ # See, edit, configure, and delete your Google Cloud Platform data
34
34
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
35
35
  end
36
36
  end
@@ -715,6 +715,16 @@ module Google
715
715
  # @return [String]
716
716
  attr_accessor :severity_name
717
717
 
718
+ # The source from which the information in this Detail was obtained.
719
+ # Corresponds to the JSON property `source`
720
+ # @return [String]
721
+ attr_accessor :source
722
+
723
+ # The vendor of the product. e.g. "google"
724
+ # Corresponds to the JSON property `vendor`
725
+ # @return [String]
726
+ attr_accessor :vendor
727
+
718
728
  def initialize(**args)
719
729
  update!(**args)
720
730
  end
@@ -730,6 +740,8 @@ module Google
730
740
  @package = args[:package] if args.key?(:package)
731
741
  @package_type = args[:package_type] if args.key?(:package_type)
732
742
  @severity_name = args[:severity_name] if args.key?(:severity_name)
743
+ @source = args[:source] if args.key?(:source)
744
+ @vendor = args[:vendor] if args.key?(:vendor)
733
745
  end
734
746
  end
735
747
 
@@ -2557,6 +2569,14 @@ module Google
2557
2569
  # @return [Fixnum]
2558
2570
  attr_accessor :epoch
2559
2571
 
2572
+ # Whether this version is vulnerable, when defining the version bounds. For
2573
+ # example, if the minimum version is 2.0, inclusive=true would say 2.0 is
2574
+ # vulnerable, while inclusive=false would say it's not
2575
+ # Corresponds to the JSON property `inclusive`
2576
+ # @return [Boolean]
2577
+ attr_accessor :inclusive
2578
+ alias_method :inclusive?, :inclusive
2579
+
2560
2580
  # Distinguish between sentinel MIN/MAX versions and normal versions. If kind is
2561
2581
  # not NORMAL, then the other fields are ignored.
2562
2582
  # Corresponds to the JSON property `kind`
@@ -2580,6 +2600,7 @@ module Google
2580
2600
  # Update properties of this object
2581
2601
  def update!(**args)
2582
2602
  @epoch = args[:epoch] if args.key?(:epoch)
2603
+ @inclusive = args[:inclusive] if args.key?(:inclusive)
2583
2604
  @kind = args[:kind] if args.key?(:kind)
2584
2605
  @name = args[:name] if args.key?(:name)
2585
2606
  @revision = args[:revision] if args.key?(:revision)
@@ -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.1.0"
19
+ GEM_VERSION = "0.6.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.1.1"
22
+ GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20201112"
25
+ REVISION = "20210409"
26
26
  end
27
27
  end
28
28
  end
@@ -600,6 +600,8 @@ module Google
600
600
  property :package, as: 'package'
601
601
  property :package_type, as: 'packageType'
602
602
  property :severity_name, as: 'severityName'
603
+ property :source, as: 'source'
604
+ property :vendor, as: 'vendor'
603
605
  end
604
606
  end
605
607
 
@@ -1103,6 +1105,7 @@ module Google
1103
1105
  # @private
1104
1106
  class Representation < Google::Apis::Core::JsonRepresentation
1105
1107
  property :epoch, as: 'epoch'
1108
+ property :inclusive, as: 'inclusive'
1106
1109
  property :kind, as: 'kind'
1107
1110
  property :name, as: 'name'
1108
1111
  property :revision, as: 'revision'
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.1.0
4
+ version: 0.6.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: 2021-01-08 00:00:00.000000000 Z
11
+ date: 2021-05-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-containeranalysis_v1alpha1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1alpha1/v0.1.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1alpha1/v0.6.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-containeranalysis_v1alpha1
57
57
  post_install_message:
58
58
  rdoc_options: []
@@ -62,14 +62,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
62
62
  requirements:
63
63
  - - ">="
64
64
  - !ruby/object:Gem::Version
65
- version: '2.4'
65
+ version: '2.5'
66
66
  required_rubygems_version: !ruby/object:Gem::Requirement
67
67
  requirements:
68
68
  - - ">="
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.1.4
72
+ rubygems_version: 3.2.17
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Container Analysis API V1alpha1