google-apis-containeranalysis_v1beta1 0.45.0 → 0.46.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: 527a3b5b104f7aa04aa8b2a538b307b02616a3e3ad42496a720de56ff1f6b4ff
4
- data.tar.gz: dd89919a4d6de8563980d01979d2483be85f6ef5178678605fad653d856d55fa
3
+ metadata.gz: 9950bdf0a2f4c99401148e10415790208651a9b6a2438059f48ea768b228eb73
4
+ data.tar.gz: 77b40f20130f8eb3267476a1803de12e7d9aaf2a4426b5d50da17bda420bbf1c
5
5
  SHA512:
6
- metadata.gz: 0f44c38ad14de62c4e731268636c40866bde32ed10fc2258850a7ff0c27b7522ce2680a19db8efaae8c8be2e4df6d10a5873405bfc81a377471089f5e741c0fe
7
- data.tar.gz: 7658d2363de983cf1713b29643d349f566e6e2d32ec2ea22bd9edc494e3ccfc70a688f9072d4a705b9a22a615a98dd5fd704dcf8e45115563c159d1261d0ccae
6
+ metadata.gz: 37f96ecb8051bf49eb906e02f182833c98932a008eec1eb7f961178388b1ad49f7f55f97a5b8bbe53edfc3111d59be06d4610e81b048be2bdb5b4798c3dfc1c0
7
+ data.tar.gz: 84837186719534d55f6aebba8077746faa6f2e41a73b23518db105f639271ec267047cb0755bbae2640c11d8650ba40437f386de1733f2b93097637a191e57d8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-containeranalysis_v1beta1
2
2
 
3
+ ### v0.46.0 (2023-08-27)
4
+
5
+ * Regenerated from discovery document revision 20230811
6
+
3
7
  ### v0.45.0 (2023-08-13)
4
8
 
5
9
  * Regenerated from discovery document revision 20230804
@@ -2078,6 +2078,39 @@ module Google
2078
2078
  end
2079
2079
  end
2080
2080
 
2081
+ # Location of the source in a 2nd-gen Google Cloud Build repository resource.
2082
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository
2083
+ include Google::Apis::Core::Hashable
2084
+
2085
+ # Directory, relative to the source root, in which to run the build.
2086
+ # Corresponds to the JSON property `dir`
2087
+ # @return [String]
2088
+ attr_accessor :dir
2089
+
2090
+ # Required. Name of the Google Cloud Build repository, formatted as `projects/*/
2091
+ # locations/*/connections/*/repositories/*`.
2092
+ # Corresponds to the JSON property `repository`
2093
+ # @return [String]
2094
+ attr_accessor :repository
2095
+
2096
+ # The revision to fetch from the Git repository such as a branch, a tag, a
2097
+ # commit SHA, or any Git ref.
2098
+ # Corresponds to the JSON property `revision`
2099
+ # @return [String]
2100
+ attr_accessor :revision
2101
+
2102
+ def initialize(**args)
2103
+ update!(**args)
2104
+ end
2105
+
2106
+ # Update properties of this object
2107
+ def update!(**args)
2108
+ @dir = args[:dir] if args.key?(:dir)
2109
+ @repository = args[:repository] if args.key?(:repository)
2110
+ @revision = args[:revision] if args.key?(:revision)
2111
+ end
2112
+ end
2113
+
2081
2114
  # Container message for hashes of byte content of files, used in
2082
2115
  # SourceProvenance messages to verify integrity of source input to the build.
2083
2116
  class ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes
@@ -2424,6 +2457,11 @@ module Google
2424
2457
  class ContaineranalysisGoogleDevtoolsCloudbuildV1Source
2425
2458
  include Google::Apis::Core::Hashable
2426
2459
 
2460
+ # Location of the source in a 2nd-gen Google Cloud Build repository resource.
2461
+ # Corresponds to the JSON property `connectedRepository`
2462
+ # @return [Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository]
2463
+ attr_accessor :connected_repository
2464
+
2427
2465
  # Location of the source in any accessible Git repository.
2428
2466
  # Corresponds to the JSON property `gitSource`
2429
2467
  # @return [Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource]
@@ -2452,6 +2490,7 @@ module Google
2452
2490
 
2453
2491
  # Update properties of this object
2454
2492
  def update!(**args)
2493
+ @connected_repository = args[:connected_repository] if args.key?(:connected_repository)
2455
2494
  @git_source = args[:git_source] if args.key?(:git_source)
2456
2495
  @repo_source = args[:repo_source] if args.key?(:repo_source)
2457
2496
  @storage_source = args[:storage_source] if args.key?(:storage_source)
@@ -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.45.0"
19
+ GEM_VERSION = "0.46.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
@@ -262,6 +262,12 @@ module Google
262
262
  include Google::Apis::Core::JsonObjectSupport
263
263
  end
264
264
 
265
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository
266
+ class Representation < Google::Apis::Core::JsonRepresentation; end
267
+
268
+ include Google::Apis::Core::JsonObjectSupport
269
+ end
270
+
265
271
  class ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes
266
272
  class Representation < Google::Apis::Core::JsonRepresentation; end
267
273
 
@@ -1459,6 +1465,15 @@ module Google
1459
1465
  end
1460
1466
  end
1461
1467
 
1468
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository
1469
+ # @private
1470
+ class Representation < Google::Apis::Core::JsonRepresentation
1471
+ property :dir, as: 'dir'
1472
+ property :repository, as: 'repository'
1473
+ property :revision, as: 'revision'
1474
+ end
1475
+ end
1476
+
1462
1477
  class ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes
1463
1478
  # @private
1464
1479
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1555,6 +1570,8 @@ module Google
1555
1570
  class ContaineranalysisGoogleDevtoolsCloudbuildV1Source
1556
1571
  # @private
1557
1572
  class Representation < Google::Apis::Core::JsonRepresentation
1573
+ property :connected_repository, as: 'connectedRepository', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository::Representation
1574
+
1558
1575
  property :git_source, as: 'gitSource', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource::Representation
1559
1576
 
1560
1577
  property :repo_source, as: 'repoSource', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource::Representation
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.45.0
4
+ version: 0.46.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-13 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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.45.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.46.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: []
@@ -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 V1beta1