Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -161922,6 +161922,7 @@
"/containeranalysis:v1beta1/ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency": containeranalysis_google_devtools_cloudbuild_v1_dependency_git_source_dependency
"/containeranalysis:v1beta1/ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency/depth": depth
"/containeranalysis:v1beta1/ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency/destPath": dest_path
"/containeranalysis:v1beta1/ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency/fetchTags": fetch_tags
"/containeranalysis:v1beta1/ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency/recurseSubmodules": recurse_submodules
"/containeranalysis:v1beta1/ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency/repository": repository
"/containeranalysis:v1beta1/ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency/revision": revision
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-containeranalysis_v1beta1

### v0.82.0 (2026-08-23)

* Regenerated from discovery document revision 20260812

### v0.81.0 (2026-08-16)

* Regenerated from discovery document revision 20260805
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
google-apis-containeranalysis_v1beta1 (0.81.0)
google-apis-containeranalysis_v1beta1 (0.82.0)
google-apis-core (>= 0.15.0, < 2.a)

GEM
Expand Down Expand Up @@ -105,7 +105,7 @@ CHECKSUMS
faraday (2.14.3) sha256=1882247e6766615c8220b4392bf1d27f6ebb63d8e28267587cef1fb0bf37f278
faraday-follow_redirects (0.5.0) sha256=5cde93c894b30943a5d2b93c2fe9284216a6b756f7af406a1e55f211d97d10ad
faraday-net_http (3.4.4) sha256=0e78af151747ed1b00f33e25973b4bc220d7f16c00c39676817c8b12331eb588
google-apis-containeranalysis_v1beta1 (0.81.0)
google-apis-containeranalysis_v1beta1 (0.82.0)
google-apis-core (1.2.1) sha256=3739030455277e3be90f2d07321ad4d0bf0d6b1ed820b2d092916d6cdef05337
google-cloud-env (2.3.1) sha256=0faac01eb27be78c2591d64433663b1a114f8f7af55a4f819755426cac9178e7
google-logging-utils (0.2.0) sha256=675462b4ea5affa825a3442694ca2d75d0069455a1d0956127207498fca3df7b
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2543,6 +2543,14 @@ class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
# @return [String]
attr_accessor :dest_path

# Optional. True if remote tags should be fetched too (default false). Note:
# when depth is 1 (default), git fetch only retrieves tags pointing to commits
# within the shallow boundary. Set depth to -1 to fetch all historical tags.
# Corresponds to the JSON property `fetchTags`
# @return [Boolean]
attr_accessor :fetch_tags
alias_method :fetch_tags?, :fetch_tags

# Optional. True if submodules should be fetched too (default false).
# Corresponds to the JSON property `recurseSubmodules`
# @return [Boolean]
Expand All @@ -2567,6 +2575,7 @@ def initialize(**args)
def update!(**args)
@depth = args[:depth] if args.key?(:depth)
@dest_path = args[:dest_path] if args.key?(:dest_path)
@fetch_tags = args[:fetch_tags] if args.key?(:fetch_tags)
@recurse_submodules = args[:recurse_submodules] if args.key?(:recurse_submodules)
@repository = args[:repository] if args.key?(:repository)
@revision = args[:revision] if args.key?(:revision)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module ContaineranalysisV1beta1
# Version of the google-apis-containeranalysis_v1beta1 gem
GEM_VERSION = "0.81.0"
GEM_VERSION = "0.82.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.19.0"

# Revision of the discovery document this client was generated from
REVISION = "20260805"
REVISION = "20260812"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -1760,6 +1760,7 @@ class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
class Representation < Google::Apis::Core::JsonRepresentation
property :depth, :numeric_string => true, as: 'depth'
property :dest_path, as: 'destPath'
property :fetch_tags, as: 'fetchTags'
property :recurse_submodules, as: 'recurseSubmodules'
property :repository, as: 'repository', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository::Representation

Expand Down
Loading