google-apis-containeranalysis_v1alpha1 0.54.0 → 0.55.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: 3b4e8c8aad0fae22b785f01a395efea208b4578691747018cd717537119962a3
4
- data.tar.gz: 51ff8ea9363c349a311b8d6d087d25cc4130e5328b232f78bc94bc389c192c98
3
+ metadata.gz: 624c7264f576de78fb667c87e32fac535630b6f07ec3dcc1e3f94ba0bff0a155
4
+ data.tar.gz: 7ccd4ad76ecfd28b073048ea7f67d5382baeb14b31bb288c2ccdfb8d7b07ba11
5
5
  SHA512:
6
- metadata.gz: efbc0ed5eac9c5757113136b89c3e1e801df30dfe0fd139020c0a74ad200b25d4a85be9131eeadafea263cb0ec7a6a36476c92a4ab9dbc37a11265f35e3f5382
7
- data.tar.gz: aa48ea96a554856f63c1423af4f268ebd6c3af705a97b3447e2dae69d93bd4d47835084e6e19fac3cd9c8c9af8f78b978599893f5821d44b448eed5b0c47ca11
6
+ metadata.gz: 477e0aec08d3698ae310acd95609b9949dd627cc99f05aaf8bf2adad80744139f67ce92160bc4f89de2995fef830c7c4d45a48794dabbc5b444bba5c966669b4
7
+ data.tar.gz: 84635d95dfe9ff27d81acfe877f729c8c94a5502ea77faae7636c17365bffb685a30ab3807f594c78495365eab12a1d97948611eeaae6e6f0e6c896a46ab452f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-containeranalysis_v1alpha1
2
2
 
3
+ ### v0.55.0 (2023-09-24)
4
+
5
+ * Regenerated from discovery document revision 20230915
6
+
3
7
  ### v0.54.0 (2023-09-10)
4
8
 
5
9
  * Regenerated from discovery document revision 20230829
@@ -2522,6 +2522,16 @@ module Google
2522
2522
  # @return [Hash<String,Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes>]
2523
2523
  attr_accessor :file_hashes
2524
2524
 
2525
+ # Location of the source in a 2nd-gen Google Cloud Build repository resource.
2526
+ # Corresponds to the JSON property `resolvedConnectedRepository`
2527
+ # @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository]
2528
+ attr_accessor :resolved_connected_repository
2529
+
2530
+ # Location of the source in any accessible Git repository.
2531
+ # Corresponds to the JSON property `resolvedGitSource`
2532
+ # @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource]
2533
+ attr_accessor :resolved_git_source
2534
+
2525
2535
  # Location of the source in a Google Cloud Source Repository.
2526
2536
  # Corresponds to the JSON property `resolvedRepoSource`
2527
2537
  # @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource]
@@ -2546,6 +2556,8 @@ module Google
2546
2556
  # Update properties of this object
2547
2557
  def update!(**args)
2548
2558
  @file_hashes = args[:file_hashes] if args.key?(:file_hashes)
2559
+ @resolved_connected_repository = args[:resolved_connected_repository] if args.key?(:resolved_connected_repository)
2560
+ @resolved_git_source = args[:resolved_git_source] if args.key?(:resolved_git_source)
2549
2561
  @resolved_repo_source = args[:resolved_repo_source] if args.key?(:resolved_repo_source)
2550
2562
  @resolved_storage_source = args[:resolved_storage_source] if args.key?(:resolved_storage_source)
2551
2563
  @resolved_storage_source_manifest = args[:resolved_storage_source_manifest] if args.key?(:resolved_storage_source_manifest)
@@ -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.54.0"
19
+ GEM_VERSION = "0.55.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 = "20230829"
25
+ REVISION = "20230915"
26
26
  end
27
27
  end
28
28
  end
@@ -1643,6 +1643,10 @@ module Google
1643
1643
  class Representation < Google::Apis::Core::JsonRepresentation
1644
1644
  hash :file_hashes, as: 'fileHashes', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
1645
1645
 
1646
+ property :resolved_connected_repository, as: 'resolvedConnectedRepository', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository::Representation
1647
+
1648
+ property :resolved_git_source, as: 'resolvedGitSource', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource::Representation
1649
+
1646
1650
  property :resolved_repo_source, as: 'resolvedRepoSource', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource::Representation
1647
1651
 
1648
1652
  property :resolved_storage_source, as: 'resolvedStorageSource', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource::Representation
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.54.0
4
+ version: 0.55.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-09-10 00:00:00.000000000 Z
11
+ date: 2023-09-24 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_v1alpha1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1alpha1/v0.54.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1alpha1/v0.55.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1alpha1
63
63
  post_install_message:
64
64
  rdoc_options: []