google-apis-containeranalysis_v1beta1 0.35.0 → 0.36.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: 1787b08674c8117192e9714846b99254eb233157c7a9bb330fad885cedde1cb1
4
- data.tar.gz: 95cde596c94fca14df4049d75fd8b76a12a1a56bf7193e544bb4bcc7b9eeadd8
3
+ metadata.gz: f569d338aee4175641dd5f9d7402211bdc952e051d5819090c926decc3a3a5fa
4
+ data.tar.gz: '089002f3b1166c42a1533bb74b018d357e437c059b61d64cd590e5002534c526'
5
5
  SHA512:
6
- metadata.gz: c96c3f7c1fd66b675112fee92eb320b689164973a4a33931641ff56179dcb0c18f44fe0aa5ffdcc90d4618bb62491af08ec48f3b4b4770b2333b02e612f544c1
7
- data.tar.gz: e801234f2541d3d08a70bf1101d88c57c7ddb82eee90f64cbdd7ff4ae332db16d997d7a79ba5de8fcbc70b95ca8519a772992f418b19df67ce9e70e811ff9773
6
+ metadata.gz: 23d1512d803ef79e9eba59235a931fceea5ec43a811d7f7c93c1e77f3791e162ea17617fc24481fc620aea259248ddb35b1f56d8e980ebda92feac3b33296195
7
+ data.tar.gz: db3ba93eb62552eb56be1385326836dfa8edee366a185b44f96bf644f8077bea2c39759f28d3aa2bcc1fe71a5caf7f7af94039c6a9bad8de00bb5c73321bf4cd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-containeranalysis_v1beta1
2
2
 
3
+ ### v0.36.0 (2023-03-19)
4
+
5
+ * Regenerated from discovery document revision 20230310
6
+
3
7
  ### v0.35.0 (2023-03-12)
4
8
 
5
9
  * Regenerated from discovery document revision 20230303
@@ -1584,6 +1584,11 @@ module Google
1584
1584
  class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptions
1585
1585
  include Google::Apis::Core::Hashable
1586
1586
 
1587
+ # Optional. Option to specify how default logs buckets are setup.
1588
+ # Corresponds to the JSON property `defaultLogsBucketBehavior`
1589
+ # @return [String]
1590
+ attr_accessor :default_logs_bucket_behavior
1591
+
1587
1592
  # Requested disk size for the VM that runs the build. Note that this is *NOT* "
1588
1593
  # disk free"; some of the space will be used by the operating system and build
1589
1594
  # utilities. Also note that this is the minimum disk size that will be allocated
@@ -1679,6 +1684,7 @@ module Google
1679
1684
 
1680
1685
  # Update properties of this object
1681
1686
  def update!(**args)
1687
+ @default_logs_bucket_behavior = args[:default_logs_bucket_behavior] if args.key?(:default_logs_bucket_behavior)
1682
1688
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
1683
1689
  @dynamic_substitutions = args[:dynamic_substitutions] if args.key?(:dynamic_substitutions)
1684
1690
  @env = args[:env] if args.key?(:env)
@@ -5148,13 +5154,6 @@ module Google
5148
5154
  class Publisher
5149
5155
  include Google::Apis::Core::Hashable
5150
5156
 
5151
- # The context or namespace. Contains a URL which is under control of the issuing
5152
- # party and can be used as a globally unique identifier for that issuing party.
5153
- # Example: https://csaf.io
5154
- # Corresponds to the JSON property `context`
5155
- # @return [String]
5156
- attr_accessor :context
5157
-
5158
5157
  # Provides information about the authority of the issuing party to release the
5159
5158
  # document, in particular, the party's constituency and responsibilities or
5160
5159
  # other obligations.
@@ -5167,15 +5166,22 @@ module Google
5167
5166
  # @return [String]
5168
5167
  attr_accessor :name
5169
5168
 
5169
+ # The context or namespace. Contains a URL which is under control of the issuing
5170
+ # party and can be used as a globally unique identifier for that issuing party.
5171
+ # Example: https://csaf.io
5172
+ # Corresponds to the JSON property `publisherNamespace`
5173
+ # @return [String]
5174
+ attr_accessor :publisher_namespace
5175
+
5170
5176
  def initialize(**args)
5171
5177
  update!(**args)
5172
5178
  end
5173
5179
 
5174
5180
  # Update properties of this object
5175
5181
  def update!(**args)
5176
- @context = args[:context] if args.key?(:context)
5177
5182
  @issuing_authority = args[:issuing_authority] if args.key?(:issuing_authority)
5178
5183
  @name = args[:name] if args.key?(:name)
5184
+ @publisher_namespace = args[:publisher_namespace] if args.key?(:publisher_namespace)
5179
5185
  end
5180
5186
  end
5181
5187
 
@@ -5277,11 +5283,6 @@ module Google
5277
5283
  # @return [String]
5278
5284
  attr_accessor :details
5279
5285
 
5280
- # Contains the date from which the remediation is available.
5281
- # Corresponds to the JSON property `remediationTime`
5282
- # @return [String]
5283
- attr_accessor :remediation_time
5284
-
5285
5286
  # The type of remediation that can be applied.
5286
5287
  # Corresponds to the JSON property `remediationType`
5287
5288
  # @return [String]
@@ -5299,7 +5300,6 @@ module Google
5299
5300
  # Update properties of this object
5300
5301
  def update!(**args)
5301
5302
  @details = args[:details] if args.key?(:details)
5302
- @remediation_time = args[:remediation_time] if args.key?(:remediation_time)
5303
5303
  @remediation_type = args[:remediation_type] if args.key?(:remediation_type)
5304
5304
  @remediation_uri = args[:remediation_uri] if args.key?(:remediation_uri)
5305
5305
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ContaineranalysisV1beta1
18
18
  # Version of the google-apis-containeranalysis_v1beta1 gem
19
- GEM_VERSION = "0.35.0"
19
+ GEM_VERSION = "0.36.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 = "20230303"
25
+ REVISION = "20230310"
26
26
  end
27
27
  end
28
28
  end
@@ -1229,6 +1229,7 @@ module Google
1229
1229
  class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptions
1230
1230
  # @private
1231
1231
  class Representation < Google::Apis::Core::JsonRepresentation
1232
+ property :default_logs_bucket_behavior, as: 'defaultLogsBucketBehavior'
1232
1233
  property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
1233
1234
  property :dynamic_substitutions, as: 'dynamicSubstitutions'
1234
1235
  collection :env, as: 'env'
@@ -2162,9 +2163,9 @@ module Google
2162
2163
  class Publisher
2163
2164
  # @private
2164
2165
  class Representation < Google::Apis::Core::JsonRepresentation
2165
- property :context, as: 'context'
2166
2166
  property :issuing_authority, as: 'issuingAuthority'
2167
2167
  property :name, as: 'name'
2168
+ property :publisher_namespace, as: 'publisherNamespace'
2168
2169
  end
2169
2170
  end
2170
2171
 
@@ -2197,7 +2198,6 @@ module Google
2197
2198
  # @private
2198
2199
  class Representation < Google::Apis::Core::JsonRepresentation
2199
2200
  property :details, as: 'details'
2200
- property :remediation_time, as: 'remediationTime'
2201
2201
  property :remediation_type, as: 'remediationType'
2202
2202
  property :remediation_uri, as: 'remediationUri', class: Google::Apis::ContaineranalysisV1beta1::RelatedUrl, decorator: Google::Apis::ContaineranalysisV1beta1::RelatedUrl::Representation
2203
2203
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-containeranalysis_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.35.0
4
+ version: 0.36.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-03-12 00:00:00.000000000 Z
11
+ date: 2023-03-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-containeranalysis_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.35.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.36.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []