google-apis-containeranalysis_v1 0.39.0 → 0.41.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: 784fd5aecf9853c2e7cb3f7b7faefc66faafd3659933021f69e175402e273fe3
4
- data.tar.gz: 959bda26384badaca2c189ba41cf1a51ac6ee60ded1bcc3f9086aa708594f6c1
3
+ metadata.gz: 7fdc3b94ff6cc38911c232c5a39db21f19577e9993891c02a17639ce5d7ad265
4
+ data.tar.gz: e063efc4a10f89dec5f913d24218f0dceed81578620a42cd2590803c0536d5e0
5
5
  SHA512:
6
- metadata.gz: 3a0cd3c974bdf87ac9ffdc5fa0ec0bf8ec305723d0ff2b7c9f46f39654695b80570a8d664a8e5071811cdf76f79d406115a628268b5d4b9618be6ac0c02319e9
7
- data.tar.gz: e72fe758e092b832ee613764e6f8de7fdba8e37a3104d4ced2cdc0470af88423f7cb7b2274279b3da44ccc807e44f3a25d0c6a75d43f33da55276612dbc3c8e8
6
+ metadata.gz: ee27425f2f685b7340b8a39e4ede462ddeb8cd8d1b4917cdf6809b6bf88f9f75e1f5b5a7cb435862f86b010ba9a10c4b55227147c2d8174e7ff2462b03e4aaab
7
+ data.tar.gz: ca94d90a5bd99d61af81d3f36de3c757183cf8a975acf2870490a63924879a619438733eaa5b742c65039f44838a52d3b95cb092dedae34bb29d8a65893fc3b8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-containeranalysis_v1
2
2
 
3
+ ### v0.41.0 (2023-09-10)
4
+
5
+ * Regenerated from discovery document revision 20230829
6
+
7
+ ### v0.40.0 (2023-08-27)
8
+
9
+ * Regenerated from discovery document revision 20230811
10
+
3
11
  ### v0.39.0 (2023-08-13)
4
12
 
5
13
  * Regenerated from discovery document revision 20230804
@@ -2222,6 +2222,39 @@ module Google
2222
2222
  end
2223
2223
  end
2224
2224
 
2225
+ # Location of the source in a 2nd-gen Google Cloud Build repository resource.
2226
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository
2227
+ include Google::Apis::Core::Hashable
2228
+
2229
+ # Directory, relative to the source root, in which to run the build.
2230
+ # Corresponds to the JSON property `dir`
2231
+ # @return [String]
2232
+ attr_accessor :dir
2233
+
2234
+ # Required. Name of the Google Cloud Build repository, formatted as `projects/*/
2235
+ # locations/*/connections/*/repositories/*`.
2236
+ # Corresponds to the JSON property `repository`
2237
+ # @return [String]
2238
+ attr_accessor :repository
2239
+
2240
+ # The revision to fetch from the Git repository such as a branch, a tag, a
2241
+ # commit SHA, or any Git ref.
2242
+ # Corresponds to the JSON property `revision`
2243
+ # @return [String]
2244
+ attr_accessor :revision
2245
+
2246
+ def initialize(**args)
2247
+ update!(**args)
2248
+ end
2249
+
2250
+ # Update properties of this object
2251
+ def update!(**args)
2252
+ @dir = args[:dir] if args.key?(:dir)
2253
+ @repository = args[:repository] if args.key?(:repository)
2254
+ @revision = args[:revision] if args.key?(:revision)
2255
+ end
2256
+ end
2257
+
2225
2258
  # Container message for hashes of byte content of files, used in
2226
2259
  # SourceProvenance messages to verify integrity of source input to the build.
2227
2260
  class ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes
@@ -2431,7 +2464,7 @@ module Google
2431
2464
  # List of build step outputs, produced by builder images, in the order
2432
2465
  # corresponding to build step indices. [Cloud Builders](https://cloud.google.com/
2433
2466
  # cloud-build/docs/cloud-builders) can produce this output by writing to `$
2434
- # BUILDER_OUTPUT/output`. Only the first 4KB of data is stored.
2467
+ # BUILDER_OUTPUT/output`. Only the first 50KB of data is stored.
2435
2468
  # Corresponds to the JSON property `buildStepOutputs`
2436
2469
  # @return [Array<String>]
2437
2470
  attr_accessor :build_step_outputs
@@ -2568,6 +2601,11 @@ module Google
2568
2601
  class ContaineranalysisGoogleDevtoolsCloudbuildV1Source
2569
2602
  include Google::Apis::Core::Hashable
2570
2603
 
2604
+ # Location of the source in a 2nd-gen Google Cloud Build repository resource.
2605
+ # Corresponds to the JSON property `connectedRepository`
2606
+ # @return [Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository]
2607
+ attr_accessor :connected_repository
2608
+
2571
2609
  # Location of the source in any accessible Git repository.
2572
2610
  # Corresponds to the JSON property `gitSource`
2573
2611
  # @return [Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource]
@@ -2596,6 +2634,7 @@ module Google
2596
2634
 
2597
2635
  # Update properties of this object
2598
2636
  def update!(**args)
2637
+ @connected_repository = args[:connected_repository] if args.key?(:connected_repository)
2599
2638
  @git_source = args[:git_source] if args.key?(:git_source)
2600
2639
  @repo_source = args[:repo_source] if args.key?(:repo_source)
2601
2640
  @storage_source = args[:storage_source] if args.key?(:storage_source)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ContaineranalysisV1
18
18
  # Version of the google-apis-containeranalysis_v1 gem
19
- GEM_VERSION = "0.39.0"
19
+ GEM_VERSION = "0.41.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 = "20230804"
25
+ REVISION = "20230829"
26
26
  end
27
27
  end
28
28
  end
@@ -280,6 +280,12 @@ module Google
280
280
  include Google::Apis::Core::JsonObjectSupport
281
281
  end
282
282
 
283
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository
284
+ class Representation < Google::Apis::Core::JsonRepresentation; end
285
+
286
+ include Google::Apis::Core::JsonObjectSupport
287
+ end
288
+
283
289
  class ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes
284
290
  class Representation < Google::Apis::Core::JsonRepresentation; end
285
291
 
@@ -1504,6 +1510,15 @@ module Google
1504
1510
  end
1505
1511
  end
1506
1512
 
1513
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository
1514
+ # @private
1515
+ class Representation < Google::Apis::Core::JsonRepresentation
1516
+ property :dir, as: 'dir'
1517
+ property :repository, as: 'repository'
1518
+ property :revision, as: 'revision'
1519
+ end
1520
+ end
1521
+
1507
1522
  class ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes
1508
1523
  # @private
1509
1524
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1600,6 +1615,8 @@ module Google
1600
1615
  class ContaineranalysisGoogleDevtoolsCloudbuildV1Source
1601
1616
  # @private
1602
1617
  class Representation < Google::Apis::Core::JsonRepresentation
1618
+ property :connected_repository, as: 'connectedRepository', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository::Representation
1619
+
1603
1620
  property :git_source, as: 'gitSource', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource::Representation
1604
1621
 
1605
1622
  property :repo_source, as: 'repoSource', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource::Representation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-containeranalysis_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.39.0
4
+ version: 0.41.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-08-20 00:00:00.000000000 Z
11
+ date: 2023-09-10 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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.39.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.41.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.4.2
78
+ rubygems_version: 3.4.19
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Container Analysis API V1