google-apis-containeranalysis_v1 0.39.0 → 0.40.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: 784fd5aecf9853c2e7cb3f7b7faefc66faafd3659933021f69e175402e273fe3
4
- data.tar.gz: 959bda26384badaca2c189ba41cf1a51ac6ee60ded1bcc3f9086aa708594f6c1
3
+ metadata.gz: 1726658065e1e6f672e55060766fbbd84b7a87bc3477396cfae4bde5e0dfad4b
4
+ data.tar.gz: 4adaa0c2873e3aa2fa20b8cf9816c0564630d673e15f0659348839bbebcc6412
5
5
  SHA512:
6
- metadata.gz: 3a0cd3c974bdf87ac9ffdc5fa0ec0bf8ec305723d0ff2b7c9f46f39654695b80570a8d664a8e5071811cdf76f79d406115a628268b5d4b9618be6ac0c02319e9
7
- data.tar.gz: e72fe758e092b832ee613764e6f8de7fdba8e37a3104d4ced2cdc0470af88423f7cb7b2274279b3da44ccc807e44f3a25d0c6a75d43f33da55276612dbc3c8e8
6
+ metadata.gz: b588d3335d1172be88060b3e3a3d5617d0d918872dd81b68c24a08428225cc2f6463cd1fbe5ed19ca2236014c2d795b2187805dd18d159dfea1f69239ff15eae
7
+ data.tar.gz: 48acb8df3ea14848e7eb21737b832cab892f26e0ba05cca933c3b0ca0b514bfb8ab1a3f93f75e1e3385af73ac68bfafe9674cf149af3c9715eac7b0259bf72a7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-containeranalysis_v1
2
2
 
3
+ ### v0.40.0 (2023-08-27)
4
+
5
+ * Regenerated from discovery document revision 20230811
6
+
3
7
  ### v0.39.0 (2023-08-13)
4
8
 
5
9
  * 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
@@ -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.40.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 = "20230811"
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.40.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-08-27 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.40.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